/* FONTS */
@import url(../css/clash-display.css);
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Unbounded:wght@600&display=swap");

/* VARIABLES */
:root {
    --c-dark: #f1f1f1;
    --c-brand: #4ec4d4;
    --c-brand-light: #69d9dd;
    --c-brand-rgb: 78, 87, 212;
    --c-body: #cfcfcf;
    --font-base: "ClashDisplay", sans-serif;
    --box-shadow: 0px 15px 25px rgba(255, 255, 255, 0.08);
    --transition: all 0.5s ease;

    --bg-main: #121212;
    --bg-light: #1e1e1e;
    --bg-card: #1a1a1a;

    --electric-border-color: #6348dd;
    --electric-light-color: #7f6dfc;
    --gradient-color: rgba(99, 72, 221, 0.4);
    --color-neutral-900: #2f2f2f;
    --bs-border-color: #1e1e1e;

    --first-color: hsl(265, 75%, 48%);
    --second-color: hsl(18, 88%, 58%);
    --title-color: hsl(220, 20%, 8%);
    --text-color: hsl(220, 8%, 35%);
    --white-color: hsl(0, 0%, 100%);
    --body-color: hsl(220, 4%, 99%);
    --container-color: hsl(0, 0%, 100%);

    --body-font: "Montserrat", sans-serif;
    --second-font: "Unbounded", sans-serif;
    --h1-font-size: 1.5rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;

    --font-regular: 400;
    --font-semi-bold: 600;
}

@media screen and (min-width: 1150px) {
    :root {
        --h1-font-size: 2.25rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
    }
}

/* RESET & HELPERS */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--c-body);
    background-color: var(--bg-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-brand);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand-light);
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.section-padding {
    padding-top: 140px;
    padding-bottom: 140px;
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* IMAGE ZOOM */
.image-zoom {
    position: relative;
    /* overflow: hidden; */
}

.image-zoom-wrapper {
    overflow: hidden;
    position: relative;
}

.image-zoom-wrapper img {
    transition: var(--transition);
}

.image-zoom:hover .image-zoom-wrapper img {
    transform: scale(1.1);
}


/* NAVBAR */
.navbar {
    box-shadow: var(--box-shadow);
    background-color: var(--bg-light);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-body);
}

.navbar-nav .nav-link.active {
    color: var(--c-brand);
}


/* BTN */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--c-brand);
    border-color: var(--c-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--c-brand-light);
    border-color: var(--c-brand-light);
    color: white;
}


/* HERO */
#hero {
    position: relative;
    overflow: hidden;

}

#hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(70%);
}

h1.display-1 {
    text-shadow: 0 0 30px #ff00cc, 0 0 10px #fff;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

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

h1.display-1 {
    color: #ff00cc;
    /* rosa anime */
    font-size: 6rem;
    letter-spacing: 2px;
    text-shadow: 0 0 30px #ff00cc, 0 0 10px #fff;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 20px #00E5FF, 0 0 8px #fff;
    letter-spacing: 1px;
    font-weight: 500;
}

/* SECTION TITLE */
.section-title {
    margin-bottom: 60px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background-color: var(--c-brand);
    margin: 16px auto 24px auto;
}

.section-title p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


/* ICONBOX */
.iconbox {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--c-brand-rgb), 0.1);
    color: var(--c-brand);
    font-size: 34px;
    flex: none;
}

/* SERVICE */
.service {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service::after {
    content: "";
    width: 40px;
    height: 40px;
    background: rgba(var(--c-brand-rgb), 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: var(--transition);
}


.service:hover::after {
    width: 100%;
    height: 100%;
    background: var(--c-brand);
    z-index: -1;
}

.service:hover h5,
.service:hover p {
    color: white;
}

.service:hover .iconbox {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Base para la tarjeta */
.locutor-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    text-align: center;
    color: white;
}

.locutor-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: scale(1.01);
    text-decoration: none;
}

/* Imagen */
.locutor-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Contenedor de texto */
.locutor-info {
    padding: 20px;
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.08);
}

/* Sombra en texto */
.locutor-info h5,
.locutor-info p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ✅ Botón visual “Ir al chat” */
.horario-button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    /* azul-violeta */
    border: none;
    border-radius: 12px;
    font-weight: bold;
    color: white;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.horario-button:hover {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    /* invertido pero igual contraste */
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: white;
    /* aseguramos que el texto siga blanco */
}


/* 🎨 Colores suaves con transparencia */
.locutor-azul .locutor-info {
    background-color: rgba(59, 130, 246, 0.85);
    /* azul suave */
}

.locutor-rojo .locutor-info {
    background-color: rgba(239, 68, 68, 0.85);
    /* rojo suave */
}

.locutor-verde .locutor-info {
    background-color: rgba(16, 185, 129, 0.85);
    /* verde suave */
}

.locutor-morado .locutor-info {
    background-color: rgba(139, 92, 246, 0.85);
    /* morado suave */
}

.locutor-rosa .locutor-info {
    background-color: rgba(236, 72, 153, 0.85);
    /* rosa suave */
}

/* COUNTER */
#counter {
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/record.gif);
    background-position: center;
    background-size: cover;
}

/* PORTFOLIO 
.portfolio-item .iconbox {
    background-color: var(--c-brand);
    color: white;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.portfolio-item:hover .iconbox {
    opacity: 1;
    top: 50%;
}
*/

/* REVIEW */
/* === Testimonial slider (1 por slide, estilo anime) === */

/* Contenedor Swiper */
.swiper {
    width: 100%;
    max-width: 360px;
    /* más pequeño y centrado */
    margin: 0 auto;
    padding: 32px 0;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tarjeta testimonial */
.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 18px 16px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.28);
}

/* Imagen de perfil */
.testimonial-card .profile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0057;
    box-shadow: 0 0 8px rgba(255, 0, 87, 0.35);
}

/* Nombre y rol */
.testimonial-card h3 {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

.testimonial-card .role {
    font-size: 0.84rem;
    color: #9aa0a6;
    margin-top: -4px;
}

/* Comentario */
.testimonial-card .comment {
    font-size: 0.92rem;
    color: #cfcfcf;
    line-height: 1.45;
}

/* Estrellas */
.stars {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.stars i {
    color: #ffcc00;
    text-shadow: 0 0 4px rgba(255, 204, 0, 0.6);
}

/* Íconos sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #8a8a8a;
}

.social-icons i {
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.social-icons i:hover {
    color: #ff0057;
    text-shadow: 0 0 6px rgba(255, 0, 87, 0.5);
    cursor: pointer;
}

/* Flechas Swiper (limpias y compactas) */
.swiper-button-prev,
.swiper-button-next {
    background: #1f1f1f;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.24);
    z-index: 10;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swiper-button-prev {
    left: -52px;
}

.swiper-button-next {
    right: -52px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 14px rgba(255, 0, 255, 0.32);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    color: #ffffff;
}

/* Ocultar paginación (bolita azul) */
.swiper-pagination {
    display: none !important;
}

/* Responsivo */
@media (max-width: 420px) {
    .swiper {
        max-width: 320px;
    }

    .swiper-button-prev {
        left: -46px;
    }

    .swiper-button-next {
        right: -46px;
    }

    .testimonial-card .profile {
        width: 64px;
        height: 64px;
    }

    .testimonial-card {
        padding: 16px 14px;
    }
}



/* CONTACT */
#contacto {
    position: relative;
    z-index: 2;
}

#contacto::after {
    content: "";
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(var(--c-brand-rgb), 0.8), rgba(var(--c-brand-rgb), 0.8)), url(../images/counter.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contacto .form-control {
    border-radius: 0;
}

#contacto .form-control:focus {
    box-shadow: none;
    border-color: var(--c-brand);
}

/* FOOTER */
footer {
    padding-top: 120px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
}


footer li,
footer p,
footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 40px;
    height: 4px;
    background-color: var(--c-brand);
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: var(--c-brand);
    color: white;
}

.bg-white {
    background-color: var(--bg-light) !important;
    color: var(--c-body) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
    color: var(--c-body) !important;
}

.portfolio-item {
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.4);
}

/* Imagen sin borde redondeado */
.portfolio-item img {
    width: 100%;
    height: 530px;
    object-fit: cover;
    display: block;
}

/* Aplica el borde al contenedor de imagen */
.image-zoom-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Lupa grande dentro de la imagen */
.carousel-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    z-index: 2;
    transition: 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;

}


.carousel-icon:hover {
    background: #ff00cc;
    box-shadow: 0 0 10px #ff00cc;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.image-zoom-wrapper::after {
    pointer-events: none;
}

.btn-animated {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    letter-spacing: 2px;
    overflow: hidden;
    border-radius: 6px;
}

.btn-animated:hover {
    background: #03e9f4;
    color: #050801;
    box-shadow: 0 0 5px #03e9f4,
        0 0 25px #03e9f4,
        0 0 50px #03e9f4,
        0 0 200px #03e9f4;
}

/* Animación de bordes */
.btn-animated span {
    position: absolute;
    display: block;
}

.btn-animated span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: animate1 1s linear infinite;
}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-animated span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.btn-animated span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.btn-animated span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

/* Responsive ajustes */
@media (max-width: 768px) {
    h1.display-1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.electric-frame {
    position: relative;
    border-radius: 24px;
    padding: 6px;
    /* más grueso */
    background: linear-gradient(90deg,
            red,
            orange,
            yellow,
            green,
            cyan,
            blue,
            violet,
            red);
    background-size: 800% 800%;
    animation: electricRGB 10s linear infinite;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

@keyframes electricRGB {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.electric-frame img {
    display: block;
    width: 100%;
    border-radius: 18px;
}

/* Swiper layout fix solo para la sección TEAM */
#team .staff-swiper {
  width: 100%;
  max-width: 1200px; /* evita el límite global */
  margin:  auto;
  padding: 20px 0;
  overflow: hidden; /* 🔑 oculta las tarjetas que entran/salen */
  padding-right: 8px;
  
}

#team .staff-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch; /* alinea las tarjetas verticalmente */
}

#team .staff-swiper .swiper-slide {
  flex-shrink: 0;
  flex: 0 0 33.333%;   /* 🔑 cada slide ocupa 1/3 exacto del ancho */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  
}

/* Card layout solo dentro de TEAM */
#team .team-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  background-color: #111;
  width: 100%;         /* ocupa todo el ancho de su slide */
  max-width: none;     /* 🔑 deja que se adapte al 33% */
}

#team .team-card:hover {
  transform: translateY(-6px);
}

#team .team-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

#team .team-card:hover .team-img img {
  transform: scale(1.1) translateY(-10px);
}

#team .team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: bottom 0.4s ease;
}
#team .team-overlay .team-role {
  display: inline-block;
  color: #fff;                  /* texto blanco normal */
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#team .team-overlay .team-role:hover {
  color: #fff; /* mantiene blanco */
  text-shadow: 
    0 0 8px #40ffdf,            /* halo cercano */
    0 0 16px #40f9ff,           /* halo medio */
    0 0 24px rgba(64, 255, 245, 0.7), /* halo más suave */
    0 0 32px rgba(64, 255, 255, 0.5); /* halo lejano */
}


#team .team-card:hover .team-overlay {
  bottom: 0;
}



/* 📱 Responsive para tablets */
@media (max-width: 992px) {
  h1.display-1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #team .staff-swiper .swiper-slide {
    flex: 0 0 50%; /* 🔑 2 tarjetas por fila en tablet */
  }

  .locutor-img {
    height: 200px;
  }

  .testimonial-card {
    max-width: 300px;
  }
}


/* === Card Animado === */
.card {
  position: relative;
  width: 300px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  transition-delay: 0.5s;
  background: transparent;   /* sin recuadro */
  margin: 0 auto; 
  border: none !important;           /* centra horizontalmente */
}



.card:hover {
  width: 600px;
  transition-delay: 0.5s;
}

.card .circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 118%;
  height: 120%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .circle::before {
  content: "";
  position: absolute;
  top: 30px;   /* corregido con unidad */
  left: 2px;
  right: 2px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: #191919;
  border: 8px solid var(--clr, #005cbf); /* usa tu variable global si existe */
  transition: 0.5s, background 0.5s;
  transition-delay: 0.75s, 1s;
  filter: drop-shadow(0 0 10px var(--clr, #005cbf)) 
          drop-shadow(0 0 60px var(--clr, #005cbf));
}

.card:hover .circle::before {
  transition-delay: 0.5s;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--clr, #005cbf);
}

.card .circle .logo {
  position: relative;
  width: 250px;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.card:hover .circle .logo {
  transform: scale(0);
  transition-delay: 0s;
}

.card .product_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(315deg);
  height: 300px;
  transition: 0.5s ease-in-out;
}

.card:hover .product_img {
  transition-delay: 0.75s;
  top: 55%;
  left: 75%;
  height: 530px;
  transform: translate(-50%, -50%) scale(1) rotate(15deg);
}

.card .content {
  position: absolute;
  width: 50%;
  left: 20%;
  top: 15%;        /* 🔑 más arriba */
  padding: 10px;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

.card:hover .content {
  transition-delay: 0.75s;
  opacity: 1;
  visibility: visible;
  left: 20px;
  top: 17%;        /* 🔑 ajusta también en hover */
}


.card:hover .content {
  transition-delay: 0.75s;
  opacity: 1;
  visibility: visible;
  left: 20px;
}

.card .content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 2.5em;
  line-height: 1em;
}

.card .content p {
  color: #fff;
    text-shadow: 
    0 0 8px #ff4099,            /* halo cercano */
    0 0 16px #ff40b6,           /* halo medio */
    0 0 24px rgba(255, 64, 191, 0.7), /* halo más suave */
    0 0 32px rgba(255, 64, 191, 0.5); /* halo lejano */
      text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card .content a {
  position: relative;
  color: #fff;
  background: #d52b1e;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

/* 📱 Responsive para celulares */
@media (max-width: 576px) {
  h1.display-1 {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  #team .staff-swiper .swiper-slide {
    flex: 0 0 100%; /* 🔑 1 tarjeta por fila en móvil */
  }

  #team .team-overlay .team-role {
    font-size: 1.2rem; /* texto más legible en móvil */
  }

  .locutor-img {
    height: 160px;
  }

  .testimonial-card {
    max-width: 100%;
    padding: 14px 12px;
  }

  .testimonial-card .profile {
    width: 56px;
    height: 56px;
  }

  .horario-button {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

