:root {
  --primary-color: #1b5e20;
  --secondary-color: #fbf706;
  --accent-color: #2e7d32;
  --text-color: #fff;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --shadow: 0 15px 50px rgba(251, 247, 6, 0.3);
  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f9;
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navigation */
.nav-bar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  color: var(--text-color);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.nav-bar.hide-on-scroll {
  transform: translateY(-100%);
}

.nav-bar ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-bar ul li a {
  color: var(--text-color);
  font-weight: bold;
  transition: var(--transition);
}

.nav-bar ul li a:hover {
  color: #f4a261;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 4px 0;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Hero Section */
.podcast-hero {
  position: relative;
  height: 100vh;
  background-image:url(../img/podcastt.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.podcast-hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(251, 247, 6, 0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.15), transparent 40%);
  animation: audioWave 4s ease-in-out infinite alternate;
}

@keyframes audioWave {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffd700, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(251, 247, 6, 0.5);
  letter-spacing: 3px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(251, 247, 6, 0.5)); }
  to { filter: drop-shadow(0 0 40px rgba(251, 247, 6, 0.8)); }
}

.hero-content .subtitle {
  font-size: 1.8rem;
  color: #e8f5e9;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-content .tagline {
  font-size: 1.2rem;
  color: #b0fab3;
  font-style: italic;
}

/* Spotify Embed Section */
.spotify-section {
  padding: 4rem 2rem;
  background: linear-gradient(145deg, #2e7d32, #1b5e20);
  text-align: center;
}

.spotify-container {
  max-width: 600px;
  margin: 0 auto;
}

.spotify-container h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 700;
}

.spotify-container iframe {
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.spotify-container iframe:hover {
  transform: scale(1.02);
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:white;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: #1b5e20;
  margin-bottom: 4rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.section-title2 {
  text-align: center;
  font-size: 3rem;
  color: #fbf706;
  margin-bottom: 4rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  margin: 1rem auto 0;
}

.features-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(145deg, #2e7d32, #1b5e20);
  border: 2px solid #333;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 247, 6, 0.1), transparent 60%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.feature-card:hover::before {
  transform: scale(1);
}

.feature-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #e8f5e9;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Equipment Section */.equipment-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.equipment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-grid {
  display: grid;
  gap: 2rem;
}

.equipment-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border-left: 5px solid var(--secondary-color);
  transition: var(--transition);
}

.equipment-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(20px);
  box-shadow: var(--shadow);
}

.equipment-content h4 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.equipment-content p {
  color: #e8f5e9;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 2rem;
  background:#F4F4F9;;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.benefit-box {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s 
ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 247, 6, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-box:hover::after {
  left: 100%;
}

.benefit-box:hover {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(46, 125, 50, 0.4);
}

.benefit-box .icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.benefit-box h3 {
  font-size: 1.5rem;
  color: #1b5e20;
  margin-bottom: 1rem;
}

.benefit-box p {
  color: #b0b0b0;
  line-height: 1.7;
}

/* CTA Section */
.cta-podcast {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, rgba(25, 88, 28, 0.1), rgba(6, 251, 26, 0.263));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-podcast::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.cta-podcast h2 {
  font-size: 3.2rem;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.cta-podcast p {
  font-size: 1.3rem;
  color: #3a403b;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, var(--secondary-color), #ffd700);
  color: var(--bg-dark);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 60px rgba(251, 247, 6, 0.7);
  background: linear-gradient(135deg, #ffd700, var(--secondary-color));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #c8e6c9;
  letter-spacing: 1px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.contact-item {
  min-width: 200px;
}

.contact-item p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-item strong {
  font-weight: 600;
  color: #a5d6a7;
}

.motto h2 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer .copyright {
  font-size: 14px;
  color: #cfd8dc;
  margin-top: 10px;
}

.location-access {
  margin-top: 10px;
}

.location-button {
  display: inline-block;
  background-color: #66bb6a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-button:hover {
  background-color: #81c784;
  transform: scale(1.05);
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1366px) and (max-height: 1024px) {
      .nav-bar {
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem 2rem !important;
        gap: 0 !important;
      }
      .hamburger {
        display: flex;
        order: 1;
      }
      .nav-bar ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-image:url(../img/liceof.png) ;
        background-color: rgba(0,0,0,0.85);
        backdrop-filter: blur(15px);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        gap: 2rem !important;
        transition: left 0.3s ease;
        z-index: 1001;
        order: 1;
        flex: none !important;
        margin: 0;
        padding: 0;
      }
      .nav-bar ul.active {

        left: 0;
      }
      .nav-bar ul li {
        width: 100%;
        text-align: center;
      }
      .nav-bar ul li a {
        font-size: 1.5rem;
        padding: 1rem;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        color: white !important;
      }
      .nav-bar ul li a:hover {
        color: #f4a261 !important;
        border-bottom-color: #f4a261;
        background: rgba(244, 162, 97, 0.1);
      }
      .nav-bar div:last-child {
        display: none !important;
      }
      .carousel{
        height: 100px;
      }
      .carousel-text {
        font-size: 1.2rem;
        bottom: 5%;
        left: 2%;
      }
    }
  /* Mobile Navigation */
  @media (max-width: 991px) {
    .nav-bar {
      justify-content: space-between !important;
      align-items: center !important;
      padding: 1rem 2rem !important;
      gap: 0 !important;
    }
    
    .hamburger {
      display: flex;
      order: 1;
    }
    
    .nav-bar a[href="index.html"] {
      order: 2;
      margin-right: 0 !important;
    }
    
    .nav-bar a[href="index.html"] img {
      width: 60px !important;
      height: 65px !important;
    }
    
    .nav-bar ul {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background-image:url(../img/fondo1.png) ;
      background-color: rgba(0,0,0,0.85);
      backdrop-filter: blur(15px);
      flex-direction: column !important;
      justify-content: center;
      align-items: center;
      background-size: cover;
      background-position: center;
      gap: 2rem !important;
      transition: left 0.3s ease;
      z-index: 1001;
      order: 1;
      flex: none !important;
      margin: 0;
      padding: 0;
    }
    
    .nav-bar ul.active {
      left: 0;
    }
    
    .nav-bar ul li {
      width: 100%;
      text-align: center;
    }
    
    .nav-bar ul li a {
      font-size: 1.5rem;
      padding: 1rem;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
      display: block;
      width: 100%;
      color: white !important;
    }
    
    .nav-bar ul li a:hover {
      color: #f4a261 !important;
      border-bottom-color: #f4a261;
      background: rgba(244, 162, 97, 0.1);
    }
    
    .nav-bar div:last-child {
      display: none !important;
    }
    .carousel-btn {
      display: none;
    }
    .carousel{
      height: 100px;
    }
  }


@media (max-width: 768px) {
  .podcast-hero {
    height: 100vh;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content .subtitle {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .equipment-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .spotify-container iframe {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 0.8rem 1rem !important;
  }
  .nav-bar a[href="index.html"] img {
    width: 50px !important;
    height: 55px !important;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  .nav-bar ul li a {
    font-size: 1.2rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content .subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-podcast h2 {
    font-size: 2rem;
  }
  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 319px) {
  .nav-bar {
    padding: 0.6rem 0.8rem !important;
  }
  .nav-bar a[href="index.html"] img {
    width: 45px !important;
    height: 50px !important;
  }
  .hamburger span {
    width: 20px;
  }
  .nav-bar ul li a {
    font-size: 1.1rem;
  }
}