:root{
  --c-main:#033953;
  --c-sec:#fac005;
  --c-tech:#0aa0a0;
  --c-accent:#f58b01;
  --c-soft:#9fd8c5;

  --ink:#0b1220;
  --muted:#465266;

  --bg:#ffffff;
  --card:#f6f8fb;

  --radius:16px;
  --shadow: 0 14px 40px rgba(0,0,0,.12);

  --header-h: 120px; /* JS lo ajusta real */
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* ===== TOPBAR ===== */
.topbar{
  background: var(--c-main);
  color: #fff;
  font-size: 13px;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}
.topbar__left{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
}
.topbar__item, .topbar__loc{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.topbar__item:hover{ opacity:1; text-decoration: underline; text-underline-offset: 3px; }
.topbar__sep{ opacity:.7; }

.topbar__right{
  display:flex;
  align-items:center;
  gap: 10px;
}
.topbar__social{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  color:#fff;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.topbar__social:hover{
  background: rgba(255,255,255,.14);
}

/* ===== NAVBAR ===== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(3,57,83,.12);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand__logo{
  height: 70px;
  width: auto;
  display:block;
}

@media (max-width: 920px){
  .brand__logo{height: 55px;}
}

.nav__links{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav__links a{
  color: var(--ink);
  text-decoration:none;
  font-weight: 600;
  letter-spacing: .2px;
}
.nav__links a:hover{
  color: var(--c-main);
}

.nav__actions{
  display:flex;
  align-items:center;
  gap: 10px;
}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: var(--c-sec);
  color: #13202a;
  border-color: rgba(0,0,0,.08);
}
.btn--primary:hover{ filter: brightness(0.98); }

.btn--secondary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--secondary:hover{ background: rgba(255,255,255,.08); }

/* Burger */
.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(3,57,83,.18);
  background: #fff;
  display:none;
  align-items:center;
  justify-content:center;
  gap: 5px;
  padding: 0 10px;
  cursor:pointer;
}
.burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: var(--c-main);
  border-radius: 5px;
}

/* Mobile menu */
.mobile{
  border-top: 1px solid rgba(3,57,83,.10);
  background: #fff;
}
.mobile__inner{
  padding: 14px 0 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.mobile__link{
  text-decoration:none;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 12px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid rgba(0,0,0,.05);
}
.mobile__link:hover{
  border-color: rgba(3,57,83,.18);
}
.mobile__cta{
  width: 100%;
  margin-top: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .nav__links{ display:none; }
  .burger{ display:inline-flex; }
  .topbar__loc{ display:none; }
}

@media (max-width: 560px){
  .topbar__inner{ flex-direction:column; align-items:flex-start; }
  .topbar__right{ width:100%; }
}


/* ===================================================== */
/* AJUSTES LIMPIOS: NAV HOVER + TOPBAR MÓVIL + CTA MÓVIL   */
/* ===================================================== */

/* (A) NAV LINKS HOVER SIN FONDO (solo color + subrayado) */
.nav__links a{
  position: relative;
  padding: 10px 2px;
  background: transparent !important;
  border-radius: 0;
  transition: color .18s ease, transform .18s ease;
}

.nav__links a:hover{
  color: var(--c-main);
  background: transparent !important; /* <- quita el cuadro gris/azulado */
}

.nav__links a::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--c-sec);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.nav__links a:hover::after{
  transform: scaleX(1);
}

/* (B) OCULTAR CTA EN MÓVIL (queda solo dentro del menú hamburguesa) */
@media (max-width: 920px){
  .nav__cta{
    display: none !important;
  }
}

/* (C) TOPBAR MÓVIL: UNA SOLA LÍNEA
   Izquierda: tel/telegram/correo (solo íconos)
   Derecha: redes sociales (visibles) */
@media (max-width: 920px){

  /* Mantén una sola línea */
  .topbar__inner{
    display:flex;
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
  }

  /* IZQUIERDA: solo íconos de contacto */
  .topbar__left{
    display:flex;
    align-items:center;
    gap: 14px;
    flex-wrap: nowrap;
    flex: 0 0 auto;
  }

  /* Oculta textos, separador y ubicación */
  .topbar__left .topbar__item span,
  .topbar__sep,
  .topbar__loc{
    display:none !important;
  }

  /* Estilo limpio (sin borde redondo ni fondo) para contacto */
  .topbar__item{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    height:auto;
    padding: 0;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    opacity: 1;
    text-decoration: none;
  }

  .topbar__item i{
    font-size: 20px;
    color:#fff;
    line-height: 1;
    transition: transform .15s ease, opacity .15s ease;
  }

  .topbar__item:hover i{
    transform: translateY(-1px);
    opacity: .85;
  }

  /* DERECHA: redes sociales visibles y pegadas a la derecha */
  .topbar__right{
    display:flex !important;
    align-items:center;
    gap: 10px;
    margin-left: auto;     /* <- fuerza a irse a la derecha */
    flex: 0 0 auto;
  }

  /* Asegurar que el ícono se vea (antes quedaban invisibles) */
  .topbar__social{
    width: 32px;
    height: 32px;
    display:grid;
    place-items:center;
  }

  .topbar__social i{
    font-size: 16px;
    color:#fff;            /* <- clave para que no “desaparezcan” */
    line-height: 1;
  }
}

/* Extra: pantallas muy pequeñas */
@media (max-width: 420px){
  .topbar__left{ gap: 12px; }
  .topbar__item i{ font-size: 18px; }

  .topbar__right{ gap: 8px; }
  .topbar__social{ width: 30px; height: 30px; }
  .topbar__social i{ font-size: 15px; }
}

/* ========================================= */
/* FIX DEFINITIVO TOPBAR MÓVIL (1 línea real) */
/* ========================================= */

@media (max-width: 920px){

  /* una sola línea */
  .topbar__inner{
    display:flex;
    flex-direction: row !important;
    align-items:center !important;
    justify-content: space-between !important;
    gap: 12px;
    padding: 10px 0;
  }

  /* izquierda: contacto */
  .topbar__left{
    display:flex;
    align-items:center;
    gap: 14px;
    flex: 1 1 auto;        /* <- ocupa espacio y empuja a la derecha */
    min-width: 0;
    flex-wrap: nowrap;
  }

  /* ocultar texto/ubicación/separador */
  .topbar__left .topbar__item span,
  .topbar__sep,
  .topbar__loc{
    display:none !important;
  }

  /* contacto: solo iconos, sin borde ni fondo */
  .topbar__item{
    padding: 0;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    width: auto;
    height: auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    opacity: 1;
  }

  .topbar__item i{
    font-size: 20px;
    color:#fff;
    line-height:1;
  }

  /* derecha: redes pegadas a la derecha SIEMPRE */
  .topbar__right{
    display:flex !important;
    align-items:center;
    justify-content:flex-end !important;
    gap: 10px;
    flex: 0 0 auto;
    width: auto !important;     /* <- mata el width:100% del @560 original */
    margin-left: auto !important;
  }

  .topbar__social{
    width: 32px;
    height: 32px;
    display:grid;
    place-items:center;
  }

  .topbar__social i{
    font-size: 16px;
    color:#fff;
    line-height:1;
  }
}

/* Override explícito del bloque original de 560px */
@media (max-width: 560px){
  .topbar__inner{
    flex-direction: row !important;
    align-items: center !important;
  }
  .topbar__right{
    width: auto !important;
  }
}

/* extra pantallas muy pequeñas */
@media (max-width: 420px){
  .topbar__item i{ font-size: 18px; }
  .topbar__social{ width: 30px; height: 30px; }
  .topbar__social i{ font-size: 15px; }
}

/* ============================= */
/* BURGER: 3 líneas en vertical + animación */
/* ============================= */

.burger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(3,57,83,.18);
  background: #fff;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;

  /* CLAVE: apilar líneas */
  flex-direction: column;
  gap: 6px;

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.burger:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  border-color: rgba(3,57,83,.28);
}

.burger:active{
  transform: translateY(1px);
}

.burger span{
  display:block;
  width: 20px;
  height: 2px;
  background: var(--c-main);
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease, width .18s ease;
  transform-origin: center;
}

/* Animación SOLO del botón cuando está abierto */
.burger.is-open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
  width: 22px;
}
.burger.is-open span:nth-child(2){
  opacity: 0;
}
.burger.is-open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
  width: 22px;
}

/* ============================= */
/* FIX: volver a mostrar el burger en móvil */
/* ============================= */
@media (max-width: 920px){
  .burger{
    display: flex !important;     /* <- lo vuelve visible */
    flex-direction: column;       /* <- líneas en vertical */
    gap: 6px;
  }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer{
  background: linear-gradient(180deg, #022c3f 0%, #021f2e 100%);
  color: #fff;
  padding-top: 70px;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer__brand{
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer__desc{
  opacity: .9;
  line-height: 1.6;
  font-size: 14px;
}

.footer__title{
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  font-size: 14px;
  text-transform: uppercase;
  opacity: .9;
}

.footer__links,
.footer__contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li,
.footer__contact li{
  margin-bottom: 8px;
  font-size: 14px;
}

.footer__links a{
  color: #fff;
  text-decoration: none;
  opacity: .85;
  transition: opacity .15s ease;
}

.footer__links a:hover{
  opacity: 1;
}

.footer__contact li{
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .9;
}

.footer__contact a{
  color: #fff;
  text-decoration: none;
}

.footer__social{
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer__social a{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: transform .15s ease, background .15s ease;
}

.footer__social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
}

/* Línea inferior */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0;
  font-size: 13px;
}

.footer__bottomWrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__credit{
  opacity: .85;
}

.footer__credit a{
  color: inherit;
}

/* Responsive */
@media (max-width: 1020px){
  .footer__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .footer{
    padding-top: 50px;
  }
  .footer__grid{
    grid-template-columns: 1fr;
  }
  .footer__bottomWrap{
    flex-direction: column;
    text-align: center;
  }
}

a{
    text-decoration: none;
}



/* ============================= */
/* NOSOTROS */
/* ============================= */

.aboutPage{ background:#fff; }

/* ========================================= */
/* HERO NOSOTROS (DARK) */
/* ========================================= */

.aHero{
  position: relative;
  padding: 88px 0 84px;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(10,160,160,.22), transparent 55%),
    radial-gradient(circle at 78% 10%, rgba(250,192,5,.18), transparent 45%),
    linear-gradient(180deg, #04425f 0%, #033953 55%, #022c40 100%);
}

/* patrón técnico */
.aHero::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:44px 44px;
  opacity:.18;
  transform:rotate(-1deg);
  pointer-events:none;
}

/* glow superior */
.aHero::after{
  content:"";
  position:absolute;
  left:-140px;
  top:-170px;
  width:520px;
  height:520px;
  border-radius:999px;
  background:rgba(10,160,160,.22);
  opacity:.85;
  pointer-events:none;
}

.aHero__wrap{ position:relative; z-index:1; }

.aHero__brand{
  font-family:"Anton",sans-serif;
  font-size:32px;
  letter-spacing:1.2px;
  color:#fff;
  position:relative;
  display:inline-block;
}

.aHero__brand::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-9px;
  width:100%;
  height:4px;
  border-radius:999px;
  background:#fac005;
}

.aHero__title{
  font-family:"Archivo Black",sans-serif; 
  margin:16px 0 10px;
  font-size:clamp(30px,3.7vw,48px);
  line-height:1.02;
  color:#fff;
}

.aHero__sub{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  max-width:760px;
  font-size:15.5px;
}

/* responsive */

@media(max-width:560px){
  .aHero{
    padding:72px 0 70px;
  }
}

/* Helpers */
.aKicker{
  display:inline-block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .25px;
  text-transform: uppercase;
  color: var(--c-main);
  margin-bottom: 8px;
}
.aTitle{
  font-family:"Anton", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  margin: 0 0 10px;
  line-height: 1.05;
  color: var(--ink);
}
.aText{
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* QUIÉNES SOMOS */
.aAbout{
  padding: 74px 0;
}
.aAbout__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch; /* iguala alturas */
}
.aAbout__content .aText{ margin-top: 10px; }

.aBullets{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}
.aBullet{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(3,57,83,.10);
  background: rgba(3,57,83,.02);
}
.aBullet__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--c-sec);
  margin-top: 6px;
  flex: 0 0 auto;
}
.aBullet strong{
  display:block;
  color: var(--ink);
  font-size: 14px;
}
.aBullet span{
  display:block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 13.5px;
  line-height: 1.55;
}

/* Imagen derecha */
.aAbout__media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(3,57,83,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  background: rgba(3,57,83,.03);
}
.aAbout__media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

/* MISIÓN / VISIÓN (fondo oscuro) */
.aMV{
  padding: 74px 0;
  background: linear-gradient(180deg, #022c3f 0%, #021f2e 100%);
  position: relative;
  overflow:hidden;
}
.aMV::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .22;
  transform: rotate(1deg);
  pointer-events:none;
}

.aKicker--light{ color: rgba(255,255,255,.88); }
.aTitle--light{ color: #fff; }
.aText--light{ color: rgba(255,255,255,.86); }

.aMV__head{ max-width: 820px; position:relative; z-index:1; }
.aMV__sub{ margin-top: 10px; }

.aMV__grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position:relative;
  z-index:1;
}

.mvCard{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 44px rgba(0,0,0,.25);
  padding: 18px 16px;
  position: relative;
  overflow:hidden;
}
.mvCard::after{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(159,216,197,.18);
}
.mvCard--vision::after{
  background: rgba(250,192,5,.14);
}

.mvCard__top{ margin-bottom: 10px; }

.mvCard__pill{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  background: rgba(250,192,5,.14);
  border: 1px solid rgba(250,192,5,.22);
}

.mvCard__text{
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
  font-size: 14.8px;
  position: relative;
  z-index: 1;
}

/* VALORES (carrusel horizontal) */
.aValues{
  padding: 74px 0 84px;
  background: #fff;
}
.aValues__head{ max-width: 820px; }
.aValues__sub{ margin-top: 10px; }

.aValues__carousel{
  margin-top: 16px;
  display:flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.aValues__carousel::-webkit-scrollbar{ height: 0; }

.vCard{
  flex: 0 0 340px;
  scroll-snap-align: start;
  border-radius: 22px;
  border: 1px solid rgba(3,57,83,.12);
  background: #fff;
  box-shadow: 0 16px 44px rgba(0,0,0,.06);
  padding: 18px 16px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.vCard:hover{
  transform: translateY(-3px);
  border-color: rgba(3,57,83,.20);
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
}
.vCard__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(250,192,5,.18);
  border: 1px solid rgba(250,192,5,.28);
  color: var(--c-main);
  margin-bottom: 10px;
}
.vCard h3{
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}
.vCard p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 1020px){
  .aAbout__grid{ grid-template-columns: 1fr; }
  .aMV__grid{ grid-template-columns: 1fr; }
  .vCard{ flex-basis: 320px; }
}

@media (max-width: 560px){
  .aHero{ padding: 56px 0 24px; }
  .aAbout{ padding: 64px 0; }
  .aMV{ padding: 64px 0; }
  .aValues{ padding: 64px 0 74px; }
  .vCard{ flex-basis: 280px; }
}

/* ============================= */
/* VALORES: CARRUSEL (FLECHAS + DRAG) */
/* ============================= */

.aValues__wrap{
  display: flex;
  align-items: center;
  justify-content: center;   /* evita que el track se estire raro */
  gap: 8px;                  /* botones más juntos al track */
  margin-top: 16px;
}

/* Flechas (sin "levantarse" en hover) */
.aValues__nav{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(3,57,83,.14);
  background: #fff;
  color: var(--c-main);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background .12s ease, border-color .12s ease, box-shadow .12s ease, color .12s ease;
}

.aValues__nav:hover{
  background: rgba(3,57,83,.04);
  border-color: rgba(3,57,83,.22);
  box-shadow: 0 12px 26px rgba(0,0,0,.10); /* mismo, sin “subir” */
}

/* Track del carrusel */
.aValues__carousel{
  margin-top: 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  cursor: grab;
  user-select: none;

  /* clave: que el carrusel NO deje un “hueco” gigante al final */
  flex: 0 1 auto;           /* no forzar a ocupar todo el ancho */
  width: min(1120px, 100%); /* ancho controlado (ajústalo si quieres) */
}

.aValues__carousel::-webkit-scrollbar{ height: 0; }

.aValues__carousel.is-dragging{
  cursor: grabbing;
}

/* Tarjetas dentro del carrusel */
.aValues__carousel .vCard{
  flex: 0 0 340px;
  scroll-snap-align: start;
}

/* Responsive */
@media (max-width: 1020px){
  .aValues__carousel{ width: 100%; }
  .aValues__carousel .vCard{ flex-basis: 320px; }
}

@media (max-width: 720px){
  .aValues__nav{ display:none; }
  .aValues__wrap{ gap: 0; }
  .aValues__carousel{
    width: 100%;
    padding-bottom: 10px;
  }
}

@media (max-width: 560px){
  .aValues__carousel .vCard{ flex-basis: 280px; }
}

/* ============================= */
/* BOTÓN FLOTANTE WHATSAPP */
/* ============================= */

.whatsappFloat{
position:fixed;
bottom:22px;
right:22px;

width:58px;
height:58px;

border-radius:50%;
background:#25D366;

display:flex;
align-items:center;
justify-content:center;

color:#fff;
font-size:28px;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999;

transition:all .25s ease;
}

/* hover */

.whatsappFloat:hover{
transform:scale(1.08);
box-shadow:0 14px 35px rgba(0,0,0,.35);
}

/* animación respiración */

.whatsappFloat::before{
content:"";
position:absolute;

width:58px;
height:58px;

border-radius:50%;

background:#25D366;

opacity:.4;

animation:whatsappPulse 2s infinite;
z-index:-1;
}

@keyframes whatsappPulse{

0%{
transform:scale(1);
opacity:.5;
}

70%{
transform:scale(1.6);
opacity:0;
}

100%{
transform:scale(1);
opacity:0;
}

}

/* Hover glow elegante */
.btn--primary{
position:relative;
transition:box-shadow .25s ease;
}

.btn--primary:hover{
box-shadow:
0 0 0 2px rgba(250,192,5,.35),
0 8px 22px rgba(0,0,0,.18),
0 0 18px rgba(250,192,5,.45);
}