/* =========================
   Futura Std – Web Fonts
========================= */

@font-face{
  font-family: "Futura Std";
  src: url("../fonts/FuturaStdMedium.woff2") format("woff2"),
       url("../fonts/FuturaStdMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Futura Std";
  src: url("../fonts/FuturaStdBold.woff2") format("woff2"),
       url("../fonts/FuturaStdBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body{
  font-family: "Futura Std", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-weight: 500;
}

h1, h2, h3, h4{
  font-weight: 700;
}

.btn{
  font-weight: 700;
}

html, body, * {
  font-family: "Futura Std", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 14px;
  border-radius:8px;
  z-index:9999;
}
.skip-link:focus{
  left:10px;
}



/* -------------------------
   Tokens
------------------------- */
:root{
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: rgba(0,0,0,.7);
  --black: #0b0b0b;
  --white: #ffffff;
  --aca-red: #e4002b;
  --aca-red-2: #ff0033;

  --container: 1120px;

  --radius: 18px;
  --radius-lg: 26px;

  --shadow: 0 18px 60px rgba(0,0,0,.12);
  --shadow-soft: 0 12px 40px rgba(0,0,0,.10);

  --header-h: 78px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Futura", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Skip */
.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--black);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* Layout */
.container{
  width: 90%;
  margin-inline: auto;
   max-width: 1660px;
}

.text-accent{ color: var(--aca-red); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}
.btn--primary{
  background: var(--aca-red);
  color: var(--white);
}
.btn--primary:hover{ filter: brightness(1.05); }


.section__header{
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}
.section__title{
  margin: 0 0 12px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}
.section__cta{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* -------------------------
   Header
------------------------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
  height: var(--header-h);
  display: grid;
  align-items: center;
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header__logo{
  height: 80px;
  width: auto;
  display: block;
  margin-left: -15px;
}
.nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link{
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.nav__link:hover{ color: #fff; }

/* Mobile toggle */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
}
.nav-toggle__bar{
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
}

/* -------------------------
   Hero
------------------------- */
.hero{
  padding: calc(var(--header-h) + 42px) 0 54px;
}

.hero__content {
    margin-top: -50px;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.hero__title{
  margin: 0 0 14px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.20;
  letter-spacing: -0.02em;
}
.hero__title-line{ display: block; }
.hero__title-line--accent{ color: var(--aca-red); }

.hero__lead{
  margin: 0 0 18px;
  max-width: 520px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-red{
    font-size: 30px;
    color: #e4002b;
}

.hero__actions{ margin-top: 12px; }
.hero__legal{
  display: inline-block;
  margin-top: 30px;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  text-decoration: none;
}
.hero__legal:hover{ text-decoration: underline; }

/* Hero visual */
/* Hero visual (imagen única) */
.hero__visual{
  display: flex;
  justify-content: flex-end;
}
.hero__heroimg{
  width: min(560px, 100%);
  height: auto;
  display: block;
}


/* -------------------------
   Promo (black)
------------------------- */
.promo{
  background: #0b0b0b;
  color: #fff;
  padding: 86px 0;
}
.promo__inner{
  text-align: center;
}
.promo__title{
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1.05;
}
.promo__subtitle{
  margin: 0;
  opacity: .85;
  font-size: 20px;
  font-weight: 500!important;
  line-height: 1.2;
  color: #fff;
}
.promo__actions{
  margin-top: 18px;
}
/* =========================
   PROMO GRID (match Figma)
========================= */

.promo__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 120px);
  align-items: start;
  justify-items: center;
  margin-top: clamp(22px, 3vw, 40px);
}

.promo-card{
  text-align: center;
  color: #fff;
  width: min(520px, 100%);
}

.promo-card__kicker{
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  opacity: .95;
  margin-bottom: 10px;
}

.promo-card__big{
  font-weight: 700;
  font-size: clamp(84px, 8vw, 140px);
  line-height: .92;
  color: #e4002b;
  letter-spacing: -0.02em;
  margin: 0;
  
}

/* Fila OFF + detalle a la derecha */
.promo-card__row{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-top: 6px;
}

.promo-card__off{
  font-weight: 700;
  font-style: italic;
  font-size: clamp(64px, 6.2vw, 110px);
  line-height: .95;
  margin: 0;
  letter-spacing: -0.02em;
}

.promo-card__detail{
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  font-size: 20px;
  text-align: left;
}

.promo-card__detail-accent{
  color: var(--red);
}

/* Separador + texto inferior */
.promo-card__plus{
  width: fit-content;
  margin: 16px auto 0;
  padding: 16px 50px;
  border-top: 1px solid rgba(255,255,255,.25);
  text-align: center;
}


/* Ribbon */
.promo__ribbon{
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 44px);
}

.promo__ribbon-text{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: #e4002b;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  max-width: 100%;
}

.section-beneficios {
   padding-top: 60px;
}


/* -------------------------
   Cards 3
------------------------- */
.cards-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.benefit-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  
}
.benefit-card__img{
  width: 100%;
  
  object-fit: cover;
  display: block;
}
.benefit-card__title{
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
}
.benefit-card__text{
  
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0,0,0,.7);
}

/* -------------------------
   Split section
------------------------- */
.section--split{ padding: 92px 0; }

/* Split: header arriba + 2 columnas abajo */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

/* Header ocupa toda la fila */
.split__header{
  grid-column: 1 / -1;
}

/* Para que el header tenga el aire correcto */
.split__title{
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1.05;
}
.split__subtitle{
  margin: 0 0 18px;
  max-width: 760px; /* opcional, para que no se estire demasiado */
  font-size: 20px;
  font-weight: 700;
}


/* Split images stack (desktop hover swap) */
.split__media{
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
  height: 100%;
}

.split__media .split__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .2s ease;
}

.split__media .split__img.is-active{
  opacity: 1;
}

/* Panel item hover state (opcional visual) */
.panel-item{
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.panel-item:hover,
.panel-item:focus{
  outline: none;
  border-color: rgb(223, 223, 223);
  box-shadow: 0 10px 24px rgb(223, 223, 223);
  transform: translateY(-1px);
}

/* Mobile cards: mostrar imagen dentro del item y ocultar el stack derecho */
.panel-item__img{
  display: none;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
}


.panel__bar{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: #2b2b2b;
  color: #fff;
  font-size: 12px;
  letter-spacing: .02em;
}
/* =========================
   PANEL (match Figma)
========================= */

/* Eliminar fondo gris/azulado del contenedor (si existiera) */
.panel,
.panel__items{
  background: transparent !important;
}

.panel {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
}



/* Cards */
.panel-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: none;
}

/* Evitar ese gris dentro de las cards (si alguna regla lo mete) */
.panel-item *{
  background: transparent;
}

/* Layout interno: icono + contenido */
.panel-item__inner{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

/* Columna izquierda (icono) */
.panel-item__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.panel-item__icon img{
  width: 26px;
  height: 26px;
  display: block;
}

/* Título + texto */
.panel-item__title{
  margin: 0 0 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.panel-item__text{
  margin: 0;
  opacity: .9;
  line-height: 1.35;
}

/* Separación vertical entre cards */
.panel__items{
  display: grid;
  gap: 20px;
  padding: 30px;
}


.split__cta .btn.btn--primary{
  width: 100%;
}


.split__cta{ 
width: 100%; 

}

.split__img{
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  box-shadow: var(--shadow);
}

/* -------------------------
   CTA Full image
------------------------- */
.cta{
  position: relative;
  min-height: 420px;
  height: 80vh;
  display: grid;
  gap: 30px;
  align-items: center;
  overflow: hidden;
}
.cta__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}
.cta__bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55);
}
.cta__inner{
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 72px 0;
}
.cta__kicker{
  margin: 0 0 10px;
  font-size: 16px;
  opacity: .9;
}
.cta__title{
  margin: 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
}
.cta__subtitle{
  margin: 0 0 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  opacity: .9;
  font-size: 20px;
}

/* Legal */
.section--legal{
  padding: 62px 0 22px;
  background: #111;
  color: rgba(255,255,255,.75);
}
.legal{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

/* Footer */
.footer{
  background: #111;
  color: rgba(255,255,255,.7);
  padding: 22px 0 30px;
}

.footer__brand img{
    width: 350px;
    margin-left: -30px;
}

.footer__inner{
  display: grid;
  gap: 14px;
}
.footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(250, 250, 250, 0.25);
  padding-top: 20px;
  gap: 14px;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
}
.footer__link{
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.footer__link:hover{ text-decoration: underline; }

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 980px){
    .header{
    height: auto;          /* si tenías height fijo */
    padding: 14px 0;       /* más aire vertical */
    overflow: visible;     /* que no recorte */
  }

  .header__inner, 
  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav__cta{
    padding: 10px 14px;    /* botón más compacto */
    line-height: 1;
    white-space: nowrap;   /* que no rompa a 2 líneas */
    border-radius: 999px;
  }

  .nav__link{display: none;}

  .brand img, 
  .header__logo{
    max-height: 56px;      /* evita que el logo “empuje” */
    height: auto;
    display: block;
  }

  .hero__inner{ grid-template-columns: 1fr; }
  .hero__shield{ margin-inline: auto; }
  .hero__lead {font-size: 22px;}
  .text-red {font-size: 26px;}
  .promo__grid{ grid-template-columns: 1fr; }
  .promo__title {font-size: 36px;}
  .cards-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split__title {font-size: 36px;}
  
  .section__title {font-size: 36px;}
  .section-beneficios {padding-top: 60px;}
  .nav.is-open{ transform: translateY(0); }
  .nav-toggle{ display: none; }

  .split__media{ display: none; }
  .panel__items {padding: 10px;}
  .panel-item__title {font-size: 18px;}
  .panel-item__img{ display: block; min-height: 250px; }

  .split{
    grid-template-columns: 1fr;
  }
  .split__header{
    grid-column: auto;
  }

  .panel-item{
    padding: 16px;
  }
}


/* Responsive: una columna */
@media (max-width: 860px){
  .promo__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}








