:root{
  --bg:#0b0a08;
  --bg2:#12100c;
  --paper:#f6f4ef;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --txt:#f4f2ee;
  --muted: rgba(244,242,238,.72);
  --line: rgba(255,255,255,.12);
  --primary:#b07a3a;
  --primary2:#e0b57a;
  --ring: rgba(176,122,58,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: black;
  color: var(--txt);
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1100px, 92%); margin:0 auto; }

.small{ font-size:.9rem; }
.muted{ color: var(--muted); }
.section{ padding: 64px 0; }
.section--alt{ background: var(--card); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ margin-bottom: 18px; }
.section__head h2{ margin:0 0 6px; font-size: clamp(1.4rem, 3vw, 2rem); }

.header{
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;

  /* fondo base (fallback) */
  background: rgba(11,10,8,.72);

  /* blur seguro */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--line);
  will-change: backdrop-filter;
}


.header__inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 14px 0;
}

/* empuja el nav hacia la derecha */
.nav{
  margin-left:auto ;
  display:flex;
  align-items:center;
  gap:18px;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand__dot{ width:10px; height:10px; border-radius:999px; background: var(--primary2); box-shadow: 0 0 0 6px rgba(224,181,122,.08); }
.brand__txt{ font-weight:700; letter-spacing:.2px; }
.brand__tag{ font-size:.85rem; color: var(--muted); padding: 2px 8px; border:1px solid var(--line); border-radius:999px; }


.nav a{ color: var(--muted); font-weight:600; font-size:.95rem; }
.nav a:hover{ color: var(--txt); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--txt);
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.btn:active{ transform: translateY(0); }
.btn--primary{
  background: linear-gradient(180deg, var(--primary2), var(--primary));
  color:#1a140d;
  border-color: rgba(176,122,58,.35);
  box-shadow: 0 16px 40px rgba(176,122,58,.25);
}
.btn--soft{
  background: rgba(255,255,255,.04);
  color: var(--txt);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.btn--soft:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.22);
}
.btn--ghost{
  background: transparent;
}
.btn:focus-visible,
.nav a:focus-visible,
.wa-fab:focus-visible,
.brand:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-color: rgba(224,181,122,.35);
}

.header__cta{ display:none; }

.hero{ padding: 64px 0 22px; }
.hero__grid{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.pill{
  display:inline-flex;
  gap:10px; align-items:center;
  padding: 6px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  font-weight:700;
  font-size:.9rem;
  margin: 0 0 14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.06;
}
.lead{
  max-width: 62ch;
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: rgba(244,242,238,.82);
  line-height: 1.45;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 16px; }
.hero__bullets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.seo-text{padding: 30px;
  max-width: 70ch;
  margin: 0 auto;
}



.kpi{
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.kpi strong{ display:block; }
.kpi span{ color: var(--muted); font-size:.92rem; }

.hero__card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 16px;
}
.hero__copy{ max-width: 62ch; }
.preview{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.preview__top{
  display:flex; gap:7px; padding: 10px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.preview__top span{ width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.16); }
.preview__body{ padding: 14px; }
.preview__bar{ height: 14px; border-radius: 999px; background: rgba(255,255,255,.10); margin-bottom: 14px; }
.preview__grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.preview__box{ height: 62px; border-radius: 12px; background: rgba(255,255,255,.08); }
.preview__line{ height: 10px; border-radius: 999px; background: rgba(255,255,255,.08); margin-bottom: 10px; }
.preview__line.short{ width: 70%; }

.grid{ display:grid; gap: 14px; }
.cards{ grid-template-columns: repeat(4, 1fr); }
.benefits{ grid-template-columns: repeat(4, 1fr); }

.card{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.card h3{ margin: 0 0 6px; }
.card p{ margin: 0; line-height: 1.45; }

.modelCard{
  display:flex; flex-direction:column; gap:10px;
  
   min-height: 190px;
}
.modelCard__top{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.badge{
  font-size:.82rem;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.modelCard__actions{ display:flex; gap:10px; margin-top:auto; }
.modelCard__actions a{ width:100%; text-align:center; }
.modelCard__actions .btn{ width: 100%; }
.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.18);
  background: var(--card);
  display:flex; gap:10px; flex-wrap:wrap;
}

.steps{
  list-style:none; padding:0; margin:0;
  display:grid; gap: 12px;
}
.steps li{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}
.step__n{
  width: 36px; height: 36px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(224,181,122,.10);
  border:1px solid rgba(224,181,122,.20);
  color: var(--primary2);
  font-weight:800;
}

.contact{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.contact__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }
.contact__card{ position: sticky; top: 96px; }

.check{ margin: 10px 0 0; padding-left: 18px; color: rgba(244,242,238,.85); }
.check li{ margin: 6px 0; }

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer__inner{ display:flex; justify-content:space-between; align-items:center; }

.wa-fab{
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366; /* verde WhatsApp */
  border: none;
  cursor: pointer;

  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  transition: transform .2s ease;
  z-index: 1000;
}

.wa-fab:hover{
  transform: scale(1.08);
}

/* SOLO tamaño, sin position */
.wa-fab img{
  width: 45px;
  height: 45px;
  object-fit: contain;
}


/* 3 columnas en “medio” */
@media (max-width: 1100px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .seo-text{margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 2 columnas */
@media (max-width: 820px){
  .cards{
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-text{
    margin-top: 30px;
    max-width: 100%;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}



@media (max-width: 980px){
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .benefits{ grid-template-columns: repeat(2, 1fr); }
  .hero__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .contact__card{ position: static; }
  .header__cta{ display:inline-flex; }
  .nav{ display:none; }
}
@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .benefits{ grid-template-columns: 1fr; }
  .hero__bullets{ grid-template-columns: 1fr; }
}
/* ============================
   SECCIÓN DESTACADA (featured)
============================= */

.featured{
  padding: 64px 0;
  position: relative;
}

.featured__inner{
  display: grid;
  gap: 28px;
  padding: 8px;
}

/* Fondo sutil premium sin romper tu estilo */
.featured{
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(59,130,246,.10), transparent 60%),
    radial-gradient(900px 420px at 80% 0%, rgba(34,197,94,.08), transparent 60%);
}

.featured__head{
  display: grid;
  gap: 12px;
  
  max-width: 1100px;   /* controla el ancho del texto */
  margin: 0 auto;     /* centra el bloque */
}

.featured__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;

  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.featured__title{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.featured__subtitle{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
}

.featured__ctaRow{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* GRID */
.featured__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  max-width: 1100px;   /* 🔥 limita el ancho */
  margin: 0 auto;      /* 🔥 centra el bloque */
}


/* ============================
   Card Premium (pCard)
============================= */

.pCard{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);

  background: rgba(255,255,255,.30s);
  backdrop-filter: blur(10px);

  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transform: none;

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pCard:hover{
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.12);
}

.pCard__media{
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,.06);
  overflow: hidden;
}

.pCard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform .45s ease;
}

.pCard:hover .pCard__img{
  transform: scale(1.04);
}

.pCard__play{
  position: absolute;
  right: 12px;
  bottom: 12px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  font-weight: 900;
  font-size: 16px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);

  transition: transform .25s ease;
}

.pCard:hover .pCard__play{
  transform: scale(1.05);
}

.pCard__body{
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.pCard__title{
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.pCard__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  opacity: .9;
}

.pCard__actions{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.pCard__actions .btn{
  width: 100%;
  justify-content: center;
}
.modelCard__media {
  width: 100%;
  height: 200px;        /* altura fija para todas */
  overflow: hidden;
  border-radius: 16px;
}

.modelCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* 🔥 clave */
  display: block;
}

/* ============================
   Responsive
============================= */

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

@media (max-width: 640px){
  .featured{
    padding: 48px 0;
  }

  .featured__ctaRow{
    gap: 10px;
  }

  .featured__grid{
    grid-template-columns: 1fr;
  }

  .pCard__actions{
    gap: 8px;
  }
}
/* ============================
   HEADER + HAMBURGUESA
============================= */

.header{
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
}

/* Ajustá si ya tenés estilos del header */
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Botón hamburguesa */
.navToggle{
  display: none; /* aparece en mobile */
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;

  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.navToggle:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.24);
  border-color: rgba(255,255,255,.20);
}

.navToggle__bar{
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.92);
  display: block;
  transition: transform .25s ease, opacity .2s ease;
}

/* Desktop nav */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CTA dentro del nav solo para mobile */
.nav__cta{
  display: none;
}

/* ============ MOBILE ============ */
@media (max-width: 840px){
  .header__cta{
    display: none; /* oculto el botón WhatsApp del header */
  }

  .navToggle{
    display: inline-flex;
  }

  /* Nav como panel desplegable */
  .nav{
    position: fixed;
    inset: calc(var(--header-h, 72px)) 12px auto 12px; /* debajo del header */
    top: calc(var(--header-h, 72px));
    max-width: 520px;
    margin: 0 auto;

    display: grid;
    gap: 12px;
    padding: 14px;

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(14px);

    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 60;
  }

  .nav a{
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
  }

  .nav a:hover{
    background: rgba(255,255,255,.10);
  }

  .nav__cta{
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  /* Estado abierto */
  body.nav-open .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Animación hamburguesa -> X */
  body.nav-open .navToggle__bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  body.nav-open .navToggle__bar:nth-child(2){
    opacity: 0;
  }
  body.nav-open .navToggle__bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Overlay opcional para cerrar al tocar fuera */
.navOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 40;
}

/* Panel del nav (menú) SIEMPRE por arriba del overlay */

body.nav-open .navOverlay{
  opacity: 1;
  pointer-events: auto;
}
#siteNav a, #siteNav button{
  pointer-events: auto;
}

/* GRID BASE */
.hero__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* VIDEO */
.hero__videoWrapper{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 900px){

  .hero__grid{
    grid-template-columns: 1fr;
  }

  /* ORDEN: primero video */
  .hero__right{
    order: -1;
  }

  .hero__videoWrapper{
    border-radius: 0;
  }
}