
:root{
  --azul-oscuro:#061A55;
  --azul:#0057B8;
  --azul-vivo:#0878F5;
  --celeste:#00AEEF;
  --fondo:#F7FBFF;
  --blanco:#FFFFFF;
  --texto:#071B57;
  --gris:#51617F;
  --borde:#DCEEFF;
  --whatsapp:#20C85A;
  --sombra:0 18px 42px rgba(6,26,85,.11);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--texto);
  background:var(--blanco);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:0 auto}

.topbar{
  background:linear-gradient(90deg,#061A55,#003783);
  color:white;
  font-size:14px;
}
.topbar__inner{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-weight:600;
}
.topbar__inner a,
.topbar__inner span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.topbar b{opacity:.55;margin:0 10px}
.topbar__social{display:flex;gap:16px;font-size:15px}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(6,26,85,.08);
}
.nav{
  min-height:92px;
  display:grid;
  grid-template-columns:250px 1fr auto;
  align-items:center;
  gap:28px;
}
.logo img{
  width:220px;
  max-height:70px;
  object-fit:contain;
}
.menu{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  font-weight:600;
  font-size:15px;
}
.menu a{
  position:relative;
  padding:10px 0;
}
.menu a.active::after,
.menu a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  border-radius:20px;
  background:var(--azul-vivo);
}
.menu a.active,
.menu a:hover{
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:14px;
  padding:14px 24px;
  font-weight:900;
  border:2px solid transparent;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--azul),var(--azul-vivo));
  color:white;
  box-shadow:0 14px 28px rgba(0,87,184,.22);
}
.btn-outline{
  background:white;
  color:var(--azul);
  border-color:var(--azul);
}
.btn-light{
  background:linear-gradient(135deg,var(--azul-vivo),var(--celeste));
  color:white;
  padding:12px 20px;
}
.nav-btn{white-space:nowrap}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  cursor:pointer;
}
.menu-toggle span{
  width:28px;
  height:3px;
  display:block;
  background:var(--azul-oscuro);
  margin:5px 0;
  border-radius:20px;
}

/* HERO SIN RAYAS NI CURVAS RARAS */
.hero{
  position:relative;
  min-height:380px;
  overflow:hidden;
  background:#f7fbff;
}
.hero__image{
  position:absolute;
  inset:0;
  background-image:url("../img/hero.jpg");
  background-size:cover;
  background-position:center right;
  z-index:0;
}
.hero__image::after{ content:none !important; display:none !important; }
.hero__fade{ display:none !important; }
.hero__content{
  position:relative;
  z-index:2;
  min-height:380px;
  display:flex;
  align-items:center;
}
.hero__text{
  max-width:500px;
}
.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--azul-vivo);
  font-size:13px;
  font-weight:900;
}
.hero h1{
  margin:0;
  font-size:clamp(36px,4vw,56px);
  line-height:1.08;
  letter-spacing:-2.3px;
  color:var(--azul-oscuro);
  font-weight:900;
}
.hero h1 span{
  display:block;
}
.hero h1 em{
  display:block;
  font-family:'Pacifico',cursive;
  font-style:normal;
  font-weight:400;
  font-size:.78em;
  letter-spacing:0;
  color:var(--azul-vivo);
  margin-top:10px;
}
.hero__subtitle{
  margin:16px 0 22px;
  max-width:500px;
  font-size:18px;
  line-height:1.55;
  color:var(--azul-oscuro);
}
.hero__actions{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.services{
  padding:34px 0 40px;
  background:white;
}
.section-title{
  text-align:center;
  margin-bottom:28px;
}
.section-title p{
  margin:0 0 4px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--azul-vivo);
  font-size:13px;
  font-weight:900;
}
.section-title h2{
  margin:0;
  color:var(--azul-oscuro);
  font-size:clamp(28px,3vw,42px);
  line-height:1.1;
  font-weight:900;
}
.section-title span{
  display:block;
  width:70px;
  height:4px;
  margin:16px auto 0;
  border-radius:20px;
  background:var(--azul-vivo);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.service-card{
  background:white;
  border:1px solid var(--borde);
  border-radius:22px;
  padding:30px 24px;
  text-align:center;
  box-shadow:0 16px 35px rgba(6,26,85,.08);
  transition:.22s ease;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--sombra);
}
.service-card h3{
  margin:18px 0 10px;
  color:var(--azul-oscuro);
  font-size:20px;
  line-height:1.2;
}
.service-card p{
  margin:0 0 18px;
  color:#1f3264;
  font-size:14px;
  line-height:1.6;
}
.service-card a{
  color:var(--azul-vivo);
  font-weight:700;
  margin-top:auto;
}
.icon{
  width:78px;
  height:78px;
  margin:0 auto;
  border-radius:50%;
  border:2px solid #BDE7FF;
  background:linear-gradient(135deg,#E6F4FF,#fff);
  display:flex;
  align-items:center;
  justify-content:center;
}
.icon i{
  font-size:30px;
  color:var(--azul-vivo);
}
.why{
  padding:0 0 48px;
  background:white;
}
.why__box{
  background:linear-gradient(135deg,#EEF9FF,#fff);
  border:1px solid var(--borde);
  border-radius:28px;
  padding:34px 28px;
}
.section-title.small{margin-bottom:24px}
.why-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.why-grid div{
  text-align:center;
  padding:18px 10px;
  background:white;
  border:1px solid var(--borde);
  border-radius:18px;
}
.why-grid i{
  display:block;
  font-style:normal;
  font-size:30px;
  color:var(--azul-vivo);
  margin-bottom:10px;
}
.why-grid strong{
  display:block;
  color:var(--azul-oscuro);
  font-size:15px;
  line-height:1.2;
  margin-bottom:8px;
}
.why-grid p{
  margin:0;
  color:#405177;
  font-size:13px;
  line-height:1.45;
}
.why__cta{
  text-align:center;
  margin-top:28px;
}
.why__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--azul-vivo);
  font-weight:700;
  font-size:15px;
}
.why__link:hover{
  text-decoration:underline;
}
.experience{
  padding:0 0 44px;
}
.experience__grid{
  display:grid;
  grid-template-columns:2fr .9fr;
  gap:24px;
}
.video-card{
  min-height:250px;
  color:white;
  background:linear-gradient(135deg,#061A55,#003A94);
  border-radius:24px;
  overflow:hidden;
  display:grid;
  grid-template-columns:42% 58%;
  box-shadow:var(--sombra);
}
.video-card__text{
  padding:36px;
}
.video-card__text p{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--celeste);
  font-size:12px;
  font-weight:900;
}
.video-card__text h2{
  margin:0 0 24px;
  font-size:34px;
  line-height:1.05;
}
.video-card__text em{
  display:block;
  font-family:'Pacifico',cursive;
  font-style:normal;
  font-weight:400;
  color:var(--celeste);
}
.video-card__media{
  position:relative;
  min-height:250px;
}
.video-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.72);
}
.video-card__media button{
  position:absolute;
  inset:0;
  margin:auto;
  width:80px;
  height:80px;
  border-radius:50%;
  border:3px solid white;
  background:rgba(0,87,184,.55);
  color:white;
  font-size:30px;
  cursor:pointer;
}
.cta-card{
  border-radius:24px;
  background:linear-gradient(135deg,var(--azul),var(--celeste));
  color:white;
  padding:34px;
  box-shadow:var(--sombra);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.cta-card h2{
  margin:0 0 10px;
  font-size:34px;
}
.cta-card p{
  margin:0 0 24px;
  line-height:1.5;
}
.btn-cta-white{
  align-self:flex-start;
  margin-top:10px;
  background:white;
  color:var(--azul-oscuro);
  font-size:17px;
}
.btn-cta-white:hover{
  background:#EAF4FF;
}

.footer{
  background:linear-gradient(135deg,#061A55,#002B70);
  color:white;
}
.footer__grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1.2fr 1fr;
  gap:34px;
  padding:38px 0;
}
.footer__logo{
  width:210px;
  filter:brightness(0) invert(1);
  margin-bottom:12px;
}
.footer h3{
  margin:0 0 14px;
  color:#AEE8FF;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.footer p{
  margin:0;
  line-height:1.7;
  color:#D9EDFF;
}
.footer a{color:#D9EDFF}
.copyright{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.12);
  padding:15px;
  color:#BFDFFF;
  font-size:13px;
}
.copyright a{
  color:#BFDFFF;
  text-decoration:underline;
  font-weight:600;
}
.copyright a:hover{
  color:white;
}

.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  width:68px;
  height:68px;
  border-radius:50%;
  background:var(--whatsapp);
  color:white;
  display:grid;
  place-items:center;
  font-size:36px;
  box-shadow:0 14px 30px rgba(0,0,0,.26);
}

@media(max-width:1050px){
  .nav{grid-template-columns:210px 1fr auto;gap:18px}
  .logo img{width:190px}
  .menu{gap:18px;font-size:13px}
  .hero h1{font-size:56px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(3,1fr)}
  .experience__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:820px){
  .topbar__inner{
    justify-content:center;
    flex-wrap:wrap;
    padding:8px 0;
    gap:8px 14px;
  }
  .topbar__social{display:none}
  .nav{
    min-height:78px;
    grid-template-columns:1fr auto;
  }
  .logo img{width:175px}
  .menu-toggle{display:block}
  .menu{
    display:none;
    grid-column:1/-1;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding-bottom:14px;
  }
  .menu.open{display:flex}
  .menu a{padding:12px 0}
  .nav-btn{display:none}
  .hero{min-height:auto}
  .hero__image{
    position:relative;
    height:230px;
    background-position:center;
    order:2;
  }
  .hero__image::after{ content:none !important; display:none !important; }
  .hero__fade{ display:none !important; }
  .hero__content{
    min-height:auto;
    padding:32px 0 22px;
  }
  .hero__text{max-width:100%}
  .hero h1{
    font-size:42px;
    letter-spacing:-1px;
  }
  .hero__subtitle{
    font-size:16px;
    margin:16px 0 20px;
  }
  .hero__actions .btn{
    flex:1 1 155px;
  }
  .services{padding-top:34px}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .video-card{grid-template-columns:1fr}
  .video-card__media{min-height:220px}
  .footer__grid{grid-template-columns:1fr}
}

@media(max-width:520px){
  .container{width:min(100% - 28px,1180px)}
  .topbar{font-size:12px}
  .hero h1{font-size:38px}
  .service-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .video-card__text{padding:28px}
  .cta-card{padding:28px}
  .wa-float{
    width:60px;
    height:60px;
    font-size:30px;
  }
}


/* Ajustes v2: hero más compacto */
@media(min-width:821px){
  .hero{
    min-height:380px;
  }
  .hero__content{
    min-height:380px;
  }
  .hero h1{
    font-size:clamp(36px,4vw,56px);
    line-height:1.08;
  }
  .hero__subtitle{
    margin:16px 0 22px;
  }
}


/* Hero claro usando hero.jpg sin difuminado por código */
.hero{
  min-height:380px !important;
  background:#ffffff !important;
}

.hero__image{
  background-image:url("../img/hero.jpg") !important;
  background-size:cover !important;
  background-position:center right !important;
  opacity:1 !important;
}

.hero__image::after{
  content:none !important;
  display:none !important;
}

.hero__fade{
  display:none !important;
}

.hero__content{
  min-height:380px !important;
}

.hero h1{
  font-size:clamp(36px,4vw,56px) !important;
  line-height:1.08 !important;
}

.hero__subtitle{
  margin:16px 0 22px !important;
}

@media(max-width:820px){
  .hero__image{
    height:240px !important;
    background-size:cover !important;
    background-position:center right !important;
  }
}


/* Ajustes CRO/UI Hero */
.hero__subtitle strong{
  font-weight:600;
}
.hero__image{
  filter:saturate(1.08) contrast(1.04);
}
.hero__proof{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  margin-top:26px;
  padding-top:20px;
  border-top:1px solid var(--borde);
}
.hero__proof-item{
  display:flex;
  flex-direction:column;
}
.hero__proof-item strong{
  font-size:22px;
  font-weight:900;
  color:var(--azul-oscuro);
  line-height:1.1;
}
.hero__proof-item span{
  font-size:12px;
  color:var(--gris);
  font-weight:600;
}
.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  width:68px;
  height:68px;
  border-radius:50%;
  background:var(--whatsapp);
  color:white;
  display:grid;
  place-items:center;
  font-size:36px;
  box-shadow:0 14px 30px rgba(0,0,0,.26);
  opacity:0;
  transform:translateY(16px) scale(.9);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.wa-float.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
@media(max-width:820px){
  .hero__proof{
    gap:20px;
    margin-top:20px;
    padding-top:16px;
  }
  .hero__proof-item strong{
    font-size:19px;
  }
}
.video-modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
}
.video-modal.is-open{
  display:flex;
}
.video-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(6,26,85,.85);
}
.video-modal__content{
  position:relative;
  z-index:2;
  width:min(360px,90vw);
}
.video-modal__frame{
  position:relative;
  width:100%;
  height:0;
  padding-bottom:177.78%;
  border-radius:18px;
  overflow:hidden;
  background:#000;
}
.video-modal__frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.video-modal__close{
  position:absolute;
  top:-44px;
  right:0;
  width:36px;
  height:36px;
  border-radius:50%;
  border:0;
  background:white;
  color:var(--azul-oscuro);
  font-size:18px;
  cursor:pointer;
}

/* ============================================
   PÁGINA NOSOTROS
   ============================================ */

.page-hero{
  padding:36px 0 28px;
  background:linear-gradient(180deg,#EEF9FF,#ffffff);
  text-align:center;
}
.page-hero .eyebrow{
  justify-content:center;
}
.page-hero h1{
  margin:0 auto 14px;
  max-width:700px;
  font-size:clamp(24px,3vw,36px);
  line-height:1.2;
  letter-spacing:-1px;
  color:var(--azul-oscuro);
  font-weight:900;
}
.page-hero h1 em{
  font-style:normal;
  color:var(--azul-vivo);
}
.page-hero__subtitle{
  max-width:580px;
  margin:0 auto;
  font-size:15px;
  line-height:1.6;
  color:var(--gris);
}

/* Historia */
.historia{
  padding:56px 0;
  background:white;
}
.historia__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}
.historia__text h2{
  margin:0 0 18px;
  font-size:clamp(26px,3vw,36px);
  line-height:1.15;
  color:var(--azul-oscuro);
  font-weight:900;
}
.historia__text p{
  margin:0 0 16px;
  font-size:15.5px;
  line-height:1.7;
  color:#334066;
}
.historia__highlight{
  margin-top:20px;
  padding:18px 20px;
  background:linear-gradient(135deg,#EEF9FF,#fff);
  border-left:4px solid var(--azul-vivo);
  border-radius:8px;
  font-weight:700;
  color:var(--azul-oscuro);
  font-size:16px;
}
.historia__media{
  position:relative;
}
.historia__media img{
  width:100%;
  height:100%;
  max-height:460px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:var(--sombra);
}
.historia__badge{
  position:absolute;
  left:-18px;
  bottom:-18px;
  background:white;
  border-radius:18px;
  padding:16px 22px;
  box-shadow:0 14px 30px rgba(6,26,85,.18);
  text-align:center;
}
.historia__badge strong{
  display:block;
  font-size:30px;
  font-weight:900;
  color:var(--azul-vivo);
  line-height:1;
}
.historia__badge span{
  font-size:11px;
  font-weight:600;
  color:var(--gris);
}

/* Razón de ser */
.razon{
  padding:0 0 56px;
}
.razon__box{
  background:linear-gradient(135deg,#061A55,#003A94);
  border-radius:28px;
  padding:48px 40px;
  text-align:center;
}
.eyebrow--light{
  color:var(--celeste);
  justify-content:center;
  display:flex;
}
.razon__quote{
  max-width:820px;
  margin:8px auto 0;
  color:white;
  font-size:clamp(19px,2.2vw,26px);
  line-height:1.5;
  font-weight:600;
}

/* Misión y Visión */
.mision-vision{
  padding:0 0 56px;
  background:white;
}
.mision-vision__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.mv-card{
  border:1px solid var(--borde);
  border-radius:22px;
  padding:32px 28px;
  background:linear-gradient(135deg,#F7FBFF,#fff);
}
.mv-card__icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--azul),var(--azul-vivo));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:16px;
}
.mv-card h3{
  margin:0 0 12px;
  font-size:22px;
  color:var(--azul-oscuro);
  font-weight:900;
}
.mv-card p{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#334066;
}

/* Qué nos diferencia */
.diferencia{
  padding:0 0 56px;
  background:var(--fondo);
}
.diferencia-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.diferencia-card{
  background:white;
  border:1px solid var(--borde);
  border-radius:20px;
  padding:28px 24px;
  box-shadow:0 12px 28px rgba(6,26,85,.06);
}
.diferencia-card .icon{
  width:56px;
  height:56px;
  margin:0 0 16px;
}
.diferencia-card .icon i{
  font-size:22px;
}
.diferencia-card h3{
  margin:0 0 10px;
  font-size:16.5px;
  line-height:1.3;
  color:var(--azul-oscuro);
  font-weight:800;
}
.diferencia-card p{
  margin:0;
  font-size:13.5px;
  line-height:1.6;
  color:#4a577a;
}

/* Convenio PNP */
.convenio{
  padding:0 0 56px;
  background:var(--fondo);
}
.convenio__grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:center;
}
.convenio__media img{
  width:100%;
  border-radius:22px;
  box-shadow:var(--sombra);
}
.convenio__text h2{
  margin:6px 0 16px;
  font-size:clamp(24px,3vw,32px);
  color:var(--azul-oscuro);
  font-weight:900;
  line-height:1.15;
}
.convenio__text > p{
  margin:0 0 20px;
  font-size:15.5px;
  line-height:1.7;
  color:#334066;
}
.convenio__list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.convenio__list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14.5px;
  color:#334066;
  font-weight:600;
}
.convenio__list i{
  color:var(--whatsapp);
  margin-top:3px;
}
.convenio__footer-note{
  margin:0;
  font-style:italic;
  color:var(--azul-vivo);
  font-weight:700;
  font-size:14.5px;
}

/* CTA final Nosotros */
.nosotros-cta{
  padding:0 0 64px;
}
.nosotros-cta__box{
  background:linear-gradient(135deg,var(--azul),var(--celeste));
  border-radius:28px;
  padding:48px 32px;
  text-align:center;
  box-shadow:var(--sombra);
}
.nosotros-cta__box h2{
  margin:0 0 10px;
  color:white;
  font-size:clamp(24px,3vw,34px);
  font-weight:900;
}
.nosotros-cta__box p{
  margin:0 0 26px;
  color:rgba(255,255,255,.9);
  font-size:16px;
}
.nosotros-cta__actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn-outline-white{
  background:transparent;
  color:white;
  border-color:rgba(255,255,255,.7);
}
.btn-outline-white:hover{
  background:rgba(255,255,255,.12);
}

@media(max-width:1050px){
  .diferencia-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:820px){
  .historia__grid{grid-template-columns:1fr}
  .historia__media{order:-1}
  .historia__badge{left:14px;bottom:14px}
  .mision-vision__grid{grid-template-columns:1fr}
  .convenio__grid{grid-template-columns:1fr}
  .razon__box{padding:34px 22px}
}

@media(max-width:520px){
  .diferencia-grid{grid-template-columns:1fr}
}

/* ============================================
   PÁGINA SERVICIOS
   ============================================ */

.services-quicknav{
  position:sticky;
  top:92px;
  z-index:15;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--borde);
  padding:14px 0;
}
.services-quicknav__inner{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width:none;
}
.services-quicknav__inner::-webkit-scrollbar{display:none}
.services-quicknav__inner a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  padding:9px 16px;
  border-radius:30px;
  border:1px solid var(--borde);
  background:white;
  color:var(--azul-oscuro);
  font-size:13.5px;
  font-weight:700;
  transition:.2s ease;
}
.services-quicknav__inner a:hover{
  background:var(--azul-vivo);
  border-color:var(--azul-vivo);
  color:white;
}
.services-quicknav__inner i{
  color:var(--azul-vivo);
  font-size:13px;
}
.services-quicknav__inner a:hover i{
  color:white;
}

.services-detail{
  padding:56px 0;
  background:white;
}
.service-block{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:28px;
  padding:36px 0;
  border-bottom:1px solid var(--borde);
  scroll-margin-top:150px;
}
.service-block:first-child{
  padding-top:0;
}
.service-block:last-child{
  border-bottom:0;
}
.service-block__icon{
  width:72px;
  height:72px;
  flex-shrink:0;
  border-radius:20px;
  background:linear-gradient(135deg,#E6F4FF,#fff);
  border:2px solid #BDE7FF;
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-block__icon i{
  font-size:28px;
  color:var(--azul-vivo);
}
.service-block--alt .service-block__icon{
  background:linear-gradient(135deg,var(--azul),var(--azul-vivo));
  border-color:transparent;
}
.service-block--alt .service-block__icon i{
  color:white;
}
.service-block__text h2{
  margin:0 0 14px;
  font-size:clamp(21px,2.4vw,27px);
  color:var(--azul-oscuro);
  font-weight:900;
  line-height:1.2;
}
.service-block__text p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.7;
  color:#334066;
}
.service-block__cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:6px;
  color:var(--whatsapp);
  font-weight:700;
  font-size:14.5px;
}
.service-block__cta:hover{
  text-decoration:underline;
}

@media(max-width:820px){
  .services-quicknav{
    top:78px;
  }
  .service-block{
    grid-template-columns:1fr;
  }
  .service-block__icon{
    width:60px;
    height:60px;
  }
  .service-block__icon i{
    font-size:24px;
  }
}

/* ============================================
   PÁGINA ESPECIALISTAS
   ============================================ */

.team{
  padding:16px 0 56px;
  background:white;
}
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.team-card{
  border:1px solid var(--borde);
  border-radius:22px;
  overflow:hidden;
  background:white;
  box-shadow:0 12px 28px rgba(6,26,85,.06);
  transition:.22s ease;
}
.team-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--sombra);
}
.team-card__photo{
  aspect-ratio:3/4;
  overflow:hidden;
  background:#eef4fb;
}
.team-card__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
}
.team-card__body{
  padding:22px 22px 26px;
}
.team-card__tag{
  display:inline-block;
  margin:0 0 10px;
  padding:5px 14px;
  border-radius:30px;
  background:linear-gradient(135deg,#E6F4FF,#fff);
  border:1px solid #BDE7FF;
  color:var(--azul-vivo);
  font-size:12.5px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.team-card__body p:last-child{
  margin:0;
  font-size:14px;
  line-height:1.65;
  color:#334066;
}

@media(max-width:1050px){
  .team-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .team-grid{grid-template-columns:1fr}
}

/* ============================================
   PÁGINA SEDES
   ============================================ */

.sedes{
  padding:16px 0 56px;
  background:white;
}
.sedes-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.sede-card{
  border:1px solid var(--borde);
  border-radius:22px;
  overflow:hidden;
  background:white;
  box-shadow:0 12px 28px rgba(6,26,85,.06);
  display:flex;
  flex-direction:column;
}
.sede-card__map{
  position:relative;
  width:100%;
  height:0;
  padding-bottom:62%;
  background:#eef4fb;
}
.sede-card__map iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.sede-card__body{
  padding:24px 24px 26px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.sede-card__tag{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 0 6px;
  color:var(--azul-vivo);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.sede-card h2{
  margin:0 0 14px;
  font-size:24px;
  color:var(--azul-oscuro);
  font-weight:900;
}
.sede-card__address,
.sede-card__schedule{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin:0 0 10px;
  font-size:14px;
  line-height:1.5;
  color:#334066;
}
.sede-card__address i,
.sede-card__schedule i{
  color:var(--azul-vivo);
  margin-top:3px;
  width:14px;
  flex-shrink:0;
}
.sede-card__schedule span{
  color:var(--gris);
  font-size:12.5px;
}
.sede-card__actions{
  margin-top:auto;
  padding-top:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.sede-card__actions .btn{
  width:100%;
}
.sede-card__link{
  display:inline-flex;
  align-items:center;
  gap:7px;
  justify-content:center;
  color:var(--azul-vivo);
  font-weight:700;
  font-size:13.5px;
}
.sede-card__link:hover{
  text-decoration:underline;
}
.sede-card__link i{
  font-size:11px;
}

@media(max-width:1050px){
  .sedes-grid{grid-template-columns:1fr}
  .sede-card__map{padding-bottom:48%}
}

/* ============================================
   PÁGINA PREGUNTAS FRECUENTES
   ============================================ */

.faq-section{
  padding:16px 0 56px;
  background:white;
}
.faq-container{
  max-width:820px;
}
.faq-item{
  border:1px solid var(--borde);
  border-radius:16px;
  margin-bottom:14px;
  overflow:hidden;
  background:white;
}
.faq-item__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  border:0;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  color:var(--azul-oscuro);
}
.faq-item__q i{
  flex-shrink:0;
  color:var(--azul-vivo);
  transition:transform .25s ease;
}
.faq-item.is-open .faq-item__q i{
  transform:rotate(180deg);
}
.faq-item__a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.faq-item__a p{
  margin:0;
  padding:0 22px 20px;
  font-size:14.5px;
  line-height:1.7;
  color:#334066;
}
.faq-item__a a{
  color:var(--azul-vivo);
  font-weight:700;
  text-decoration:underline;
}

@media(max-width:520px){
  .faq-item__q{
    padding:16px 18px;
    font-size:15px;
  }
  .faq-item__a p{
    padding:0 18px 18px;
  }
}
