/* Footer TV VoiceS común para TODAS las páginas */

#tvvoicesFooter {
  margin-top: 2.5rem;
  /* mt-10 “real” */
  margin-bottom: 2.5rem;
  /* espacio bajo el footer que querías */
}

/* Tarjeta de cristal del footer */
#tvvoicesFooter .glass {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(18px);
}

/* Gradiente del fondo del footer */
#tvvoicesFooter .grad-brand {
  background-image: linear-gradient(135deg, #865DA4 0%, #2CB5FF 100%);
}

/* Borde de la franja inferior */
#tvvoicesFooter .footer-border {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* ==== ICONOS RRSS FOOTER (versión grande + hover chulo) ==== */

/* .footer-social a {
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
  border-radius: 14px;
}  */

/* Círculo + borde blanco animado */
/* .footer-social a::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: inherit;
  transition: border-color .3s ease, border-radius .3s ease;
} */



/* Colores + glow potente por red */

/* .footer-social .social-linkedin:hover {
  background: #0A66C2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(10, 102, 194, 0.9);
}

.footer-social .social-youtube:hover {
  background: #FF0000 !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}

.footer-social .social-spotify:hover {
  background: #1DB954 !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(29, 185, 84, 0.9);
} */

/* ===== Redes sociales más grandes y centradas ===== */

#tvvoicesFooter .footer-social {
  justify-content: center;
  margin-top: 4.5rem;
}

/* Hover general (círculo + ligera escala) */
.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
  border-radius: 999px !important;
}

.footer-social a:hover::after {
  border-color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

/* Aumentar tamaño de cada icon-box */
#tvvoicesFooter .footer-social a {
  width: 72px;
  /* antes 56px */
  height: 72px;
  border-radius: 20px;
  font-size: 1.8rem;
  /* antes 1.4rem */
  display: grid;
  place-content: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Iconos centrados verticalmente */
#tvvoicesFooter .footer-col-2 {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover: mismo efecto, pero adaptado al nuevo tamaño */
#tvvoicesFooter .footer-social a:hover {
  transform: translateY(-6px) scale(1.12);
  /* un poco más de escala */
}

/* Ajuste glow por red social (se mantiene tu estilo exacto) */
#tvvoicesFooter .footer-social .social-linkedin:hover {
  background: #0A66C2 !important;
  box-shadow: 0 0 35px rgba(10, 102, 194, 0.9);
}

#tvvoicesFooter .footer-social .social-youtube:hover {
  background: #FF0000 !important;
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.9);
}

#tvvoicesFooter .footer-social .social-spotify:hover {
  background: #1DB954 !important;
  box-shadow: 0 0 35px rgba(29, 185, 84, 0.9);
}



/* ===== Footer en páginas del blog: todo blanco ===== */
#tvvoicesFooter.footer-in-article,
#tvvoicesFooter.footer-in-article * {
  color: #ffffff !important;
}

/* Avatar de Felipe en el footer */
#tvvoicesFooter .host-avatar {
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

/* Logo circular de tvads con fondo blanco */
#tvvoicesFooter .tvads-logo-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35);
}

#tvvoicesFooter .tvads-logo-circle img {
  max-width: 70%;
  height: auto;
  display: block;
}

/* ===== Foto de Felipe (columna izquierda) ===== */
.footer-felipe-img {
  width: 180px;
  height: 180px;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
  margin-top: 0.5rem;
}

/* ===== Logo tvads dentro de círculo blanco ===== */
.footer-tvads-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 9999px;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35);
  margin-top: 0.5rem;
}

.footer-tvads-img {
  max-width: 100%;
  height: auto;
  display: block;
}