/* ===== Galo Partners · podcast.html ===== */

.btn-secondary {
  background: transparent;
  color: var(--color-oscuro);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 40px;
  border: 1.5px solid var(--color-oscuro);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-oscuro);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 13, 77, 0.15);
}

.btn-spotify {
  background: #1DB954;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.30);
  position: relative;
  overflow: hidden;
}

.btn-spotify:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.45);
}

.btn-youtube {
  background: #FF0000;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
}

.btn-youtube:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.45);
}

.hero {
  padding: 80px 0 100px;
  background: var(--color-oscuro);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 152, 29, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content .podcast-icon {
  font-size: 4rem;
  color: var(--color-naranja);
  margin-bottom: 20px;
  display: block;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-content h1 .highlight {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitulo {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-naranja);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .section-label {
  background: rgba(252, 152, 29, 0.20);
  color: var(--color-naranja);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.sobre-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-oscuro);
  margin-bottom: 20px;
}

.sobre-content p {
  color: var(--color-gris);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-content .destacado {
  font-weight: 600;
  color: var(--color-azul);
  font-size: 1.2rem;
}

.sobre-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-image .placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 400px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(11, 13, 77, 0.04);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: #f0eff7;
  padding: 0;
  display: block;
}

.sobre-image .placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.temas-section {
  padding: 90px 0;
  background-color: var(--color-fondo);
}

.temas-header {
  text-align: center;
  margin-bottom: 56px;
}

.temas-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-oscuro);
  margin-bottom: 12px;
}

.temas-header p {
  color: var(--color-gris);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.temas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tema-item {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(11, 13, 77, 0.04);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(11, 13, 77, 0.04);
}

.tema-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 13, 77, 0.06);
  border-color: var(--color-naranja);
}

.tema-item i {
  font-size: 2.5rem;
  color: var(--color-naranja);
  margin-bottom: 16px;
}

.tema-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-oscuro);
  margin-bottom: 8px;
}

.tema-item p {
  color: var(--color-gris);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.anfitriones-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.anfitriones-header {
  text-align: center;
  margin-bottom: 56px;
}

.anfitriones-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--color-oscuro);
  margin-bottom: 12px;
}

.anfitriones-header p {
  color: var(--color-gris);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.anfitriones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.anfitrion-card {
  background: var(--color-fondo);
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(11, 13, 77, 0.04);
  transition: all 0.3s ease;
}

.anfitrion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 13, 77, 0.06);
  border-color: var(--color-azul);
}

.anfitrion-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--color-naranja);
  box-shadow: 0 8px 24px rgba(252, 152, 29, 0.15);
}

.anfitrion-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.anfitrion-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-oscuro);
  margin-bottom: 4px;
}

.anfitrion-card .cargo {
  font-size: 0.9rem;
  color: var(--color-gris);
  font-weight: 500;
  margin-bottom: 8px;
}

.anfitrion-card .descripcion {
  font-size: 0.95rem;
  color: var(--color-gris);
  line-height: 1.6;
  margin: 0;
}

.cta-episodios {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-oscuro) 0%, #1a1d6e 100%);
  color: #ffffff;
  text-align: center;
}

.cta-episodios .section-label {
  background: rgba(252, 152, 29, 0.20);
  color: var(--color-naranja);
}

.cta-episodios h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 700px;
  margin: 0 auto 16px;
}

.cta-episodios p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-episodios .botones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .temas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .anfitriones-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content .podcast-icon {
    font-size: 3rem;
  }

  .sobre-image .placeholder {
    max-width: 280px;
  }

  .temas-grid {
    grid-template-columns: 1fr;
  }

  .anfitriones-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .anfitrion-card .avatar {
    width: 100px;
    height: 100px;
  }

  .cta-episodios .botones {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
