: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;
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top: 0;
}
.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.02) saturate(1.02);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,57,83,.92) 0%, rgba(3,57,83,.74) 40%, rgba(3,57,83,.25) 100%),
    radial-gradient(circle at 20% 30%, rgba(10,160,160,.25), transparent 55%);
}
.hero__content{
  position: relative;
  z-index: 2;
  padding: 56px 0;
  color:#fff;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 700;
}

.hero__title{
  font-family: "Anton", sans-serif;
  margin: 14px 0 10px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: .98;
  letter-spacing: .5px;
}
.hero__subtitle{
  margin: 0 0 18px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.55;
  opacity: .95;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero__quick{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.qitem{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 700;
}

/* Placeholder sections for anchors */
.section-spacer{
  height: 60vh;
  background: #fff;
}

/* ===== 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%; }
  .hero__subtitle{ font-size: 15px; }
}


/* ===================================================== */
/* 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; }
}

/* ============================= */
/* HERO: marca INDUSEG+ animada (sin cuadro) */
/* ============================= */

.hero__tag{
  margin-bottom: 6px;
}

.hero__brand{
  font-family: "Anton", sans-serif;
  font-size: 34px;
  letter-spacing: 1.2px;
  line-height: 1;
  color: #fff;

  /* dinamismo */
  display: inline-block;
  position: relative;
  animation: heroBrandIn .7s ease both;
}

/* subrayado amarillo animado */
.hero__brand::after{
  content:"";
  position:absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: var(--c-sec);
  border-radius: 999px;

  transform: scaleX(0);
  transform-origin: left;
  animation: heroUnderline .9s ease .15s both;
}

@keyframes heroBrandIn{
  from{ opacity: 0; transform: translateY(10px); filter: blur(4px); }
  to{ opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroUnderline{
  from{ transform: scaleX(0); opacity: .7; }
  to{ transform: scaleX(1); opacity: 1; }
}

@media (max-width: 560px){
  .hero__brand{ font-size: 28px; }
}

/* ============================= */
/* 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;
  }
}


/* ============================= */
/* CATEGORÍAS (TÍTULO DENTRO + DEGRADADO) */
/* ============================= */


.cats{
  padding: 84px 0;
  background: #fff;
}

.cats__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cats__title{
  font-family: "Anton", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.cats__sub{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 520px;
}

/* 4 por fila en escritorio */
.cats__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Tarjeta */
.cat{
  position: relative;
  text-decoration:none;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(3,57,83,.10);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  min-height: 210px; /* medio cuadradas en desktop */
  display:block;
}

/* Imagen ocupa toda la tarjeta */
.cat__img{
  position:absolute;
  inset:0;
}

.cat__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.01);
  transition: transform .25s ease, filter .25s ease;
}

/* Degradado negro inferior para contraste */
.cat::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.70) 100%);
  pointer-events:none;
}

/* Título dentro (blanco) */
.cat__title{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .15px;
  z-index: 2;
  text-shadow: 0 6px 16px rgba(0,0,0,.35);
}

/* Hover técnico */
.cat:hover{
  transform: translateY(-2px);
  border-color: rgba(3,57,83,.20);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
}

.cat:hover .cat__img img{
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.06);
}

/* Responsive */
@media (max-width: 1020px){
  .cats__grid{ grid-template-columns: repeat(3, 1fr); }
  .cat{ min-height: 200px; }

  .cats__sub{
  display: none;
}
}

@media (max-width: 720px){
  .cats{ padding: 64px 0; }
  .cats__grid{ grid-template-columns: repeat(2, 1fr); }
  .cat{ min-height: 150px; }   /* más cortas en móvil/tablet */
  .cat__title{ font-size: 14px; bottom: 10px; }
}

@media (max-width: 420px){
  .cats__grid{ grid-template-columns: repeat(2, 1fr); } /* mantiene 2 para que no se alargue */
  .cat{ min-height: 130px; }  /* aún más cortas */
  .cat__title{ left: 12px; right: 12px; }
}


/* ============================= */
/* WHY - OPCIÓN A (Split dinámico) */
/* ============================= */

.whyA{
  padding: 84px 0;
  background:
    radial-gradient(circle at 10% 30%, rgba(159,216,197,.28), transparent 100%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.whyA__grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

/* Lead */
.whyA__lead{
  border-radius: 22px;
  padding: 26px 22px;
  background: linear-gradient(180deg, var(--c-sec) 0%, #ffd24a 100%);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  position: relative;
  overflow:hidden;
}

.whyA__lead::after{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(3,57,83,.14);
  filter: blur(0);
}

.whyA__kicker{
  display:inline-block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .25px;
  color: #13202a;
  font-size: 12px;
}

.whyA__title{
  font-family:"Anton", sans-serif;
  margin: 10px 0 10px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  color: #13202a;
}

.whyA__text{
  margin: 0;
  color: rgba(19,32,42,.88);
  line-height: 1.65;
  font-weight: 600;
}

.whyA__cta{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.whyA__btn{
  background: var(--c-main);
  color:#fff;
  border-color: rgba(3,57,83,.18);
}
.whyA__btn:hover{
  box-shadow: 0 18px 40px rgba(3,57,83,.22), 0 12px 26px rgba(0,0,0,.12);
}

.whyA__mini{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: rgba(19,32,42,.90);
  font-weight: 800;
}

/* Cards */
.whyA__cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.whyA__card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(3,57,83,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  padding: 18px 16px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  position: relative;
  overflow:hidden;
}

.whyA__card::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--c-tech);
  opacity: .9;
}

.whyA__card i{
  font-size: 20px;
  color: var(--c-main);
}

.whyA__card h3{
  margin: 10px 0 6px;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}

.whyA__card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.whyA__card:hover{
  transform: translateY(-3px);
  border-color: rgba(3,57,83,.20);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 980px){
  .whyA__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .whyA{ padding: 64px 0; }
  .whyA__cards{ grid-template-columns: 1fr; }
}

/* ============================= */
/* WHY - OPCIÓN B (Proceso) */
/* ============================= */

.whyB{
  padding: 84px 0;
  background: linear-gradient(180deg, rgba(3,57,83,.96), rgba(3,57,83,.90));
  color:#fff;
}

.whyB__head{
  text-align: left;
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.whyB__title{
  font-family:"Anton", sans-serif;
  margin: 0;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
}

.whyB__sub{
  margin: 0;
  opacity: .92;
  max-width: 520px;
  line-height: 1.6;
}

.whyB__steps{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  overflow:hidden;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.step::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(10,160,160,.18);
}

.step__num{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--c-sec);
  color: #13202a;
  font-family:"Anton", sans-serif;
  font-size: 22px;
  border: 1px solid rgba(0,0,0,.12);
}

.step h3{
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.step p{
  margin: 0;
  opacity: .92;
  line-height: 1.55;
  font-size: 14px;
}

.step:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
}

/* Barra inferior CTA */
.whyB__bar{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
}

.whyB__tag{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}

.whyB__btn{
  background: var(--c-sec);
  color: #13202a;
  border-color: rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 1020px){
  .whyB__steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .whyB{ padding: 64px 0; }
  .whyB__head{ flex-direction: column; align-items:flex-start; }
  .whyB__steps{ grid-template-columns: 1fr; }
  .whyB__bar{ flex-direction: column; align-items: stretch; }
  .whyB__btn{ width: 100%; justify-content:center; }
}

/* ============================= */
/* CTA FINAL */
/* ============================= */

.ctaFinal{
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
  position: relative;
}

.ctaFinal__wrap{
  max-width: 800px;
  margin: 0 auto;
}

.ctaFinal__title{
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  margin: 0 0 12px;
  line-height: 1.05;
  color: var(--ink);
}

.ctaFinal__text{
  margin: 0 auto 24px;
  max-width: 600px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15.5px;
}

.ctaFinal__actions{
  display:flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ctaFinal__btnPrimary{
  background: var(--c-main);
  color: #fff;
  border-color: rgba(3,57,83,.18);
  padding: 14px 22px;
}

.ctaFinal__btnPrimary:hover{
  box-shadow: 0 18px 40px rgba(3,57,83,.25);
}

.ctaFinal__btnSecondary{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 800;
  color: var(--c-main);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(3,57,83,.18);
  transition: background .15s ease, transform .15s ease;
}

.ctaFinal__btnSecondary:hover{
  background: rgba(3,57,83,.06);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 560px){
  .ctaFinal{
    padding: 70px 0;
  }
  .ctaFinal__actions{
    flex-direction: column;
  }
  .ctaFinal__btnPrimary{
    width: 100%;
    justify-content: center;
  }
  .ctaFinal__btnSecondary{
    justify-content: center;
  }

  .ctaFinal__title{
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 12px;
}
}


/* ============================= */
/* 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;
}


/* ======================================================
   MARCAS INLINE (dentro de servicios)
====================================================== */
.marcas-inline {
  margin-top: 60px;
  text-align: center;
}
.marcas-inline .marcas-lead {
  color: #3a4a59;
  font-weight: 700;
  margin-bottom: 16px;
}
.marcas-inline .marcas-track {
  overflow: hidden;
  border-top: 1px dashed var(--gris-borde);
  border-bottom: 1px dashed var(--gris-borde);
  padding: 16px 0;
}
.marcas-inline .marcas-slide {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: marquee 22s linear infinite;
}
.marcas-inline .marcas-slide img {
  height: 42px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.25s;
}
.marcas-inline .marcas-slide img:hover {
  filter: none;
  opacity: 1;
}

.marcas-inline .marcas-slide {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marcas-inline .marcas-track:hover .marcas-slide {
  animation-play-state: paused;
}

/* ============================= */
/* 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);
}


/* ========================================= */
/* GARANTÍAS */
/* ========================================= */

.garantias{
padding:70px 0;
background:#f7f9fb;
}

.garantias__head{
max-width:700px;
margin-bottom:28px;
}

.garantias__kicker{
font-size:13px;
font-weight:700;
color:#033953;
letter-spacing:.4px;
text-transform:uppercase;
display:block;
margin-bottom:6px;
}

.garantias__head h2{
font-family:"Anton",sans-serif;
font-size:34px;
line-height:1.2;
color:#033953;
margin:0;
}

/* lista */

.garantias__list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px 28px;
list-style:none;
padding:0;
margin:0;
}

.garantias__item{
display:flex;
align-items:center;
gap:12px;
font-size:16px;
color:#1f2a33;
font-weight:500;
}

.garantias__item i{
color:#fac005;
font-size:18px;
min-width:22px;
}

/* responsive */

@media(max-width:768px){

.garantias__list{
grid-template-columns:1fr;
}

}

.garantias__head{
max-width:900px; /* antes era 700px */
margin-bottom:32px;
}

.garantias__title{
font-family:"Anton",sans-serif;
font-size:36px;
line-height:1.2;
color:#033953;
margin:0 0 8px;
}

.garantias__sub{
margin:0;
color:#5a6a75;
font-size:16px;
line-height:1.6;
max-width:640px;
}


/* ========================================= */
/* RIESGOS */
/* ========================================= */

.riesgos{
padding:80px 0;
background:#033953; /* azul de la marca */
color:#fff;
}

.riesgos__head{
max-width:900px;
margin-bottom:30px;
}

.riesgos__title{
font-family:"Anton",sans-serif;
font-size:38px;
line-height:1.15;
color:#fff;
margin:0 0 10px;
}

.riesgos__accent{
color:#fac005; /* amarillo que te gustó */
}

.riesgos__sub{
margin:0;
color:rgba(255,255,255,.80);
font-size:16px;
line-height:1.65;
max-width:720px;
}

/* grid */

.riesgos__grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
}

/* tarjetas */

.riesgoCard{
border-radius:22px;
border:1px solid rgba(255,255,255,.15);
background:rgba(255,255,255,.06);
padding:20px 18px;
}

.riesgoCard__icon{
width:48px;
height:48px;
border-radius:16px;
display:grid;
place-items:center;
background:rgba(250,192,5,.18);
border:1px solid rgba(250,192,5,.40);
color:#fac005;
margin-bottom:12px;
font-size:18px;
}

.riesgoCard h3{
margin:0 0 6px;
color:#fff;
font-size:16px;
font-weight:900;
}

.riesgoCard p{
margin:0;
color:rgba(255,255,255,.80);
font-size:14.5px;
line-height:1.65;
}

/* responsive */

@media(max-width:1020px){
.riesgos__grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:560px){
.riesgos__grid{grid-template-columns:1fr;}
.riesgos__title{font-size:34px;}
}

/* ========================================= */
/* POR QUÉ ELEGIRNOS (MISMO FONDO AZUL) */
/* ========================================= */

.elegirnos{
  padding: 0 0 80px;      /* sin padding arriba porque viene pegada a riesgos */
  background: #033953;    /* mismo fondo azul */
  color: #fff;
}

/* línea divisora entre secciones */
.elegirnos__divider{
  height: 1px;
  background: rgba(250,192,5,.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
  margin: 0 0 34px;
}

/* header */
.elegirnos__head{
  max-width: 900px;
  margin-bottom: 18px;
}

.elegirnos__title{
  font-family: "Anton", sans-serif;
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #fff;
}

.elegirnos__sub{
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* lista */
.elegirnos__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
}

/* items */
.elegirnos__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

/* bolita con palomita amarilla */
.elegirnos__check{
width:28px;
height:28px;
border-radius:999px;
background:#fac005; /* círculo amarillo sólido */
display:grid;
place-items:center;
color:#033953; /* palomita azul del fondo */
flex:0 0 auto;
font-size:13px;
}

/* responsive */
@media (max-width: 900px){
  .elegirnos__list{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .elegirnos{ padding-bottom: 64px; }
  .elegirnos__title{ font-size: 34px; }
}