:root{
    --nl-green:#008180;
    --nl-orange:#d87625;
    --nl-yellow:#d39e29;
  
    --hero-base:#061010;
    --text: rgba(255,255,255,.94);
    --muted: rgba(255,255,255,.72);
  }
  
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  
  body{
    margin:0;
    font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    overflow-x:hidden;
  
    /* Página normal (sin degradado): */
    background:#fff;
    color:#111;
  }
  
  /* ===== HERO (AQUÍ sí va el degradado Nomilinea) ===== */
  .nlx-hero{
    min-height: 92vh;
    display:flex;
    align-items:center;
    padding: 72px 18px;
    color: var(--text);
  
    background:
      radial-gradient(900px 520px at 20% 25%, rgba(0,129,128,.26), transparent 60%),
      radial-gradient(750px 460px at 85% 20%, rgba(216,118,37,.22), transparent 62%),
      radial-gradient(750px 520px at 70% 90%, rgba(211,158,41,.16), transparent 60%),
      linear-gradient(180deg, #ffffff, #ffffff);

  }
  
  .nlx-hero__wrap{
    width: min(1120px, 100%);
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items:center;
  }
  
  /* COPY */
  .nlx-copy{
    display:flex;
    flex-direction:column;
    gap: 10px;
  }
  
  /* PILL */
  .nlx-pill{
    width: fit-content;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
  
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
  
    color: rgba(0,0,0,.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
  }
  .nlx-pill i{
    font-size: 18px;
    color: var(--nl-green);
  }
  
  /* TITLE */
  .nlx-title{
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--nl-green);
  }
  
  /* SUB */
  .nlx-sub{
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 54ch;
    font-weight: 500;
  }
  
  /* BTN */
  .nlx-btn{
    width: fit-content;
    margin-top: 4px;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 16px;
    text-decoration:none;
  
    font-weight: 800;
    font-size: 14px;
  
    color: rgba(255,255,255,.96);
    border: 1px solid rgba(0,129,128,.45);
    background: linear-gradient(135deg, rgba(0,129,128,.92), rgba(0,129,128,.52));
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
  
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  }
  .nlx-btn i{ font-size: 20px; opacity:.95; }
  .nlx-btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
  }
  .nlx-btn:active{ transform: translateY(0) scale(.99); }
  
  /* VISUAL */
  .nlx-visual{
    position:relative;
    display:grid;
    place-items:center;
    height: 420px;
  }
  
  /* Glow suave detrás de la imagen */
  .nlx-visual::before{
    content:"";
    position:absolute;
    inset:-18px;
    border-radius: 999px;
    filter: blur(32px);
    opacity: .62;
    background:
      radial-gradient(circle at 30% 30%, rgba(0,129,128,.42), transparent 60%),
      radial-gradient(circle at 80% 25%, rgba(216,118,37,.34), transparent 62%),
      radial-gradient(circle at 60% 85%, rgba(211,158,41,.22), transparent 60%);
  }
  
  .nlx-img{
    position:relative;
    width: min(520px, 96%);
    height:auto;
    display:block;
    filter: drop-shadow(0 22px 46px rgba(0,0,0,.38));
    transform: translateY(2px);
  }
  
  /* ===== HERO responsive ===== */
  @media (max-width: 980px){
    .nlx-hero{ min-height: auto; padding: 64px 16px; }
    .nlx-hero__wrap{
      grid-template-columns: 1fr;
      gap: 16px;
      text-align: center;
    }
    .nlx-copy{ align-items:center; }
    .nlx-sub{ max-width: 60ch; }
    .nlx-btn{ justify-content:center; }
    .nlx-visual{ height: 340px; }
  }
  @media (max-width: 425px){
    .nlx-hero{ padding: 54px 14px; }
    .nlx-copy{ gap: 8px; }
    .nlx-title{ font-size: 36px; line-height: 1.08; }
    .nlx-sub{ font-size: 14.5px; }
    .nlx-visual{ height: 300px; }
    .nlx-visual::before{ inset:-16px; filter: blur(28px); }
    
  }
  @media (max-width: 320px){
    .nlx-title{ font-size: 26px; }
    .nlx-sub{ font-size: 14px; }
    .nlx-btn{ padding: 10px 13px; font-size: 13.5px; }
    .nlx-visual{ height: 260px; }
  }
  









  
 /* ===== HOW IT WORKS (look tipo screenshot) ===== */
.nlx-how{
    padding: 70px 18px 88px;
    background: transparent;
  }
  
  .nlx-how__wrap{
    width: min(1180px, 100%);
    margin: 0 auto;
  }
  
  .nlx-how__head{
    max-width: 78ch;
    margin: 0 auto 26px;
    text-align: center;
  }
  
  .nlx-how__title{
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 40px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #377e7f;
  }
  
  .nlx-how__intro{
    margin: 0 auto;
    color: rgba(0,0,0,.78);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
  }
  
  /* Grid con más aire lateral */
  .nlx-how__grid{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }
  
  /* Card: grande, limpia, pastel, con “halo” */
  .nlx-howCard{
    --card-bg: #F3D8C7;      /* default */
    --ring: rgba(55,126,127,.55);
  
    position: relative;
    border-radius: 34px;
    padding: 38px 34px 34px;
    background: var(--card-bg);
    border: 1px solid rgba(0,0,0,.04);
  
    /* base: casi nada de sombra */
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
    transform: translateY(0);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s cubic-bezier(.2,.9,.2,1), border-color .22s ease;
    overflow: hidden;
  }
  
  /* Glow suave detrás (apagado por default) */
  .nlx-howCard::before{
    content:"";
    position:absolute;
    inset: -18px;
    border-radius: 42px;
    background: radial-gradient(circle at 50% 40%, rgba(55,126,127,.22), transparent 62%);
    opacity: 0;
    filter: blur(18px);
    transition: opacity .22s ease;
    pointer-events:none;
  }
  
/* Borde iluminado (compatible, sin máscaras) */
.nlx-howCard::after{
    content:"";
    position:absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events:none;
  
    /* borde normal */
    box-shadow: inset 0 0 0 1px rgba(55,126,127,.18);
    opacity: 0;
  
    transition: opacity .22s ease;
  }

  .nlx-howCard:hover::after{
    opacity: 1;
    box-shadow:
      inset 0 0 0 1px rgba(55,126,127,.22),
      0 18px 45px rgba(55,126,127,.12),
      0 0 0 6px rgba(55,126,127,.08);
  }
  
  /* Icon wrapper: círculo blanco con sombra tipo screenshot */
  .nlx-howCard__icon{
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    margin: 0 auto 18px;
  
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 18px 34px rgba(0,0,0,.10);
  
    transform: translateY(0);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease;
  }
  
  .nlx-howCard__icon i{
    font-size: 30px;
    color: rgba(0,0,0,.72);
  }
  
  /* Texto centrado, con peso y buen aire */
  .nlx-howCard__text{
    margin: 0;
    text-align:center;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(0,0,0,.78);
  }
  
  /* Colores por card (como tu imagen: naranja/verde/naranja pastel) */
  .nlx-howCard:nth-child(1){
    --card-bg: #F3D8C7; /* peach */
    --ring: rgba(216,118,37,.35);
  }
  .nlx-howCard:nth-child(2){
    --card-bg: #CFE4E3; /* teal pastel */
    --ring: rgba(55,126,127,.55);
  }
  .nlx-howCard:nth-child(3){
    --card-bg: #F3D8C7; /* peach */
    --ring: rgba(211,158,41,.30);
  }
  
  /* HOVER premium: levanta + halo + borde iluminado + icono sube */
  .nlx-howCard:hover{
    transform: translateY(-14px);
    box-shadow: 0 34px 90px rgba(0,0,0,.12);
    border-color: rgba(55,126,127,.18);
  }
  
  .nlx-howCard:hover::before{
    opacity: 1;
  }
  
  .nlx-howCard:hover::after{
    opacity: 1;
  }
  
  .nlx-howCard:hover .nlx-howCard__icon{
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(0,0,0,.14);
  }
  
  /* Active: se siente “click” */
  .nlx-howCard:active{
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0,0,0,.10);
  }
  
  /* ===== Reveal on scroll ===== */
  .nlx-reveal{
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
  }
  .nlx-reveal.is-in{
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===== Responsive ===== */
  @media (max-width: 980px){
    .nlx-how{
      padding: 56px 16px 72px;
    }
    .nlx-how__grid{
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .nlx-howCard{
      padding: 34px 22px 28px;
      border-radius: 30px;
    }
    .nlx-howCard:hover{
      transform: translateY(-10px);
    }
  }
  
  @media (max-width: 425px){
    .nlx-how{
      padding: 46px 14px 62px;
    }
    .nlx-howCard{
      padding: 30px 18px 24px;
      border-radius: 28px;
    }
    .nlx-howCard__icon{
      width: 78px;
      height: 78px;
      margin-bottom: 16px;
    }
    .nlx-howCard__text{
      font-size: 17px;
    }

    .nlx-how__title{
        font-size: clamp(27px, 4vw, 18px);
        }
  }
  
  @media (max-width: 320px){
    .nlx-howCard{
      padding: 28px 16px 22px;
      border-radius: 26px;
    }
    .nlx-howCard__icon{
      width: 74px;
      height: 74px;
    }
    .nlx-howCard__text{
      font-size: 16px;
    }
  }
  










/* =========================================
   BENEFICIOS - ARREGLO DEFINITIVO IMAGEN
========================================= */

.nlx-benefits {
  padding: 80px 18px 100px;
  background: rgba(0, 128, 128, .06);
}

.nlx-benefits__wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

/* --- CABECERA --- */
.nlx-benefits__head {
  max-width: 92ch;
  margin: 0 auto 40px;
  text-align: center;
}

.nlx-benefits__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #008180;
}

.nlx-benefits__intro {
  margin: 0 auto;
  color: rgba(0, 0, 0, .72);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

/* --- LAYOUT GRID --- */
.nlx-benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

/* --- COLUMNA IZQUIERDA (BOTONES) --- */
.nlx-benefits__side {
  position: sticky;
  top: 100px;
}

.nlx-benefits__list {
  display: grid;
  gap: 14px;
}

/* ===== BOTONES (IZQUIERDA) OPTIMIZADOS ===== */
.nlx-bBtn {
  width: 100%;
  text-align: left;
  cursor: pointer;
  
  /* Diseño base */
  background: rgba(0, 129, 129, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  border-radius: 18px;
  
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
  
  /* CLAVE 1: No usar 'all', solo lo que cambia */
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.2s ease,
              box-shadow 0.2s ease,
              color 0.2s ease;
  
  position: relative;
  user-select: none; /* Evita que se seleccione el texto al pasar rápido */
}

/* Hover suave */
.nlx-bBtn:hover {
  background: #fff;
  color: #008180;
  transform: translateX(6px); /* Movimiento lateral fluido */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: rgba(0, 129, 129, 0.15);
}

/* Estado activo (Firme) */
.nlx-bBtn.is-active {
  background: #008180;
  color: #fff;
  /* Un poco más grande para destacar */
  transform: translateX(10px) scale(1.02); 
  box-shadow: 0 8px 20px rgba(0, 129, 128, 0.25);
  border-color: transparent;
}

/* --- COLUMNA DERECHA (CARD) --- */
.nlx-benefits__stage {
  position: relative;
}

.nlx-bCard {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 1. CONTENEDOR DE LA IMAGEN (Flexbox para centrar) */
.nlx-bCard__media {
  position: relative;
  height: 340px; /* Altura fija para la zona de la imagen */
  width: 100%;
  
  /* Activamos Flexbox */
  display: flex;
  /* Centrado vertical */
  align-items: center;
  /* Centrado horizontal */
  justify-content: center;
  
  background: radial-gradient(circle at center, rgba(0,129,128,0.03) 0%, rgba(255,255,255,0) 70%);
  overflow: hidden;
  padding: 20px; /* Un poco de aire alrededor */
}

/* 2. LA IMAGEN (Se ajusta al contenedor flex) */
.nlx-bImg {
  /* Quitamos position: absolute */
  position: relative;
  z-index: 1;
  
  /* Le decimos que intente ocupar todo el espacio posible */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  
  /* Asegura que no se deforme */
  object-fit: contain;
  
  /* Animación de entrada */
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.12));
  
  /* Por defecto están ocultas (display: none para que no ocupen espacio) */
  display: none;
}

.nlx-bImg.is-active {
  /* Solo la activa se muestra y se vuelve visible */
  display: block;
  opacity: 1;
}

/* 3. CONTENEDOR DE TEXTO */
.nlx-bCard__text {
  padding: 30px 36px 36px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.04);
  position: relative;
  z-index: 2;
}

.nlx-bDesc {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  display: none;
  animation: fadeInText 0.3s ease forwards;
}

.nlx-bDesc.is-active {
  display: block;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.nlx-bDesc strong {
  display: inline-block;
  color: #008180;
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 19px;
}

/* --- MOBILE & RESPONSIVE --- */

.nlx-benefits__selectWrap { display: none; }

.nlx-revB {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.nlx-revB.is-in { opacity: 1; transform: translateY(0); }


@media (max-width: 980px) {
  .nlx-benefits__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nlx-benefits__side {
    position: static;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .nlx-bCard {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .nlx-benefits { padding: 60px 16px; }
  .nlx-benefits__title { font-size: 30px; }
  
  .nlx-benefits__list { display: none; }
  .nlx-benefits__selectWrap { display: block; width: 100%; margin-bottom: 10px; }
  
  .nlx-benefits__select { position: relative; }
  .nlx-benefits__select select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 700;
    color: #444;
    appearance: none;
    background: #fff;
  }
  .nlx-benefits__select i {
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%); pointer-events: none;
  }
  
  .nlx-bCard__media { height: 240px; }
  .nlx-bCard__text { padding: 24px; }
  .nlx-bDesc { font-size: 16px; }
}


  












/* ===== SCREEN WOW MOTION ===== */


.nlx-unique__heroTitle{
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #008180;
    margin: 0 auto 18px;
    max-width: 68ch;
  }


.nlx-unique__shotWrap{
    position: relative;
    width: min(1040px, 100%);
    margin: 0 auto 34px;
    padding: 26px 14px 10px;
    isolation: isolate;
  }
  
  .nlx-unique__band{
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    top: 52%;
    width: 100vw;
    height: 160px;
    background: #d67625;
    z-index: 0;
  }
  
  /* FX halo behind */
  .nlx-screenFX{
    position:absolute;
    left:50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: min(980px, 110vw);
    height: 360px;
    z-index: 0;
    pointer-events:none;
  }
  
  .nlx-screenFX__ring{
    position:absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0,128,128,.10);
    filter: blur(22px);
    opacity: 0;
    transform: scale(.92);
  }
  
  .nlx-screenFX__ring:nth-child(1){
    background: rgba(0,128,128,.10);
  }
  .nlx-screenFX__ring:nth-child(2){
    inset: 30px;
    background: rgba(211,158,41,.10);
  }
  .nlx-screenFX__ring:nth-child(3){
    inset: 62px;
    background: rgba(214,118,37,.10);
  }
  
  /* screenshot */
  .nlx-unique__shot{
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 38px 110px rgba(0,0,0,.30);
    transform: translateZ(0);
    will-change: transform, filter;
  }
  
  /* small border highlight */
  .nlx-unique__shot::before{
    content:"";
    position:absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.70);
    pointer-events:none;
    opacity: .9;
  }
  
  .nlx-unique__img{
    width: 100%;
    height:auto;
    display:block;
  }
  
  /* diagonal shine */
  .nlx-unique__shine{
    position:absolute;
    inset: -60% -80%;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.42) 50%, transparent 58%);
    transform: translateX(-55%) rotate(10deg);
    opacity: 0;
    pointer-events:none;
    mix-blend-mode: screen;
  }
  
  /* wipe mask (subtle reveal sweep) */
  .nlx-unique__wipe{
    position:absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,0));
    transform: translateX(-110%);
    opacity: 0;
    pointer-events:none;
  }
  
  /* ===== Enter animation (WOW) ===== */
  .nlx-shotIn.is-in .nlx-unique__shot{
    animation: nlxScreenWOW 1.15s cubic-bezier(.16,1,.25,1) both,
               nlxScreenBreath 5.2s ease-in-out infinite;
    animation-delay: 0s, 1.35s;
  }
  
  @keyframes nlxScreenWOW{
    0%{
      opacity: 0;
      transform:
        perspective(1200px)
        rotateX(14deg)
        rotateY(-10deg)
        translateY(26px)
        scale(.92);
      filter: blur(10px) saturate(.95);
    }
    55%{
      opacity: 1;
      transform:
        perspective(1200px)
        rotateX(-2deg)
        rotateY(2deg)
        translateY(-4px)
        scale(1.015);
      filter: blur(0) saturate(1.05);
    }
    78%{
      transform:
        perspective(1200px)
        rotateX(1deg)
        rotateY(-1deg)
        translateY(0)
        scale(.995);
    }
    100%{
      opacity: 1;
      transform:
        perspective(1200px)
        rotateX(0deg)
        rotateY(0deg)
        translateY(0)
        scale(1);
      filter: blur(0) saturate(1);
    }
  }
  
  /* subtle idle motion (premium, no mareo) */
  @keyframes nlxScreenBreath{
    0%,100%{
      transform: translateY(0);
    }
    50%{
      transform: translateY(-8px);
    }
  }
  
  /* shine + wipe sync */
  .nlx-shotIn.is-in .nlx-unique__shine{
    animation: nlxShinePass 1.25s ease both;
    animation-delay: .55s;
  }
  @keyframes nlxShinePass{
    0%{ opacity: 0; transform: translateX(-60%) rotate(10deg); }
    18%{ opacity: 1; }
    100%{ opacity: 0; transform: translateX(42%) rotate(10deg); }
  }
  
  .nlx-shotIn.is-in .nlx-unique__wipe{
    animation: nlxWipe 1.05s cubic-bezier(.2,.9,.2,1) both;
    animation-delay: .30s;
  }
  @keyframes nlxWipe{
    0%{ opacity: .55; transform: translateX(-110%); }
    100%{ opacity: 0; transform: translateX(110%); }
  }
  
  /* rings pop behind */
  .nlx-shotIn.is-in .nlx-screenFX__ring{
    animation: nlxRingPop 1.1s cubic-bezier(.16,1,.25,1) both;
  }
  .nlx-shotIn.is-in .nlx-screenFX__ring:nth-child(2){ animation-delay: .08s; }
  .nlx-shotIn.is-in .nlx-screenFX__ring:nth-child(3){ animation-delay: .16s; }
  
  @keyframes nlxRingPop{
    0%{ opacity: 0; transform: scale(.90); }
    55%{ opacity: 1; transform: scale(1.02); }
    100%{ opacity: .85; transform: scale(1); }
  }
  
  /* Responsive tweaks */
  @media (max-width: 980px){
    .nlx-unique__band{ height: 140px; top: 56%; }
    .nlx-screenFX{ height: 320px; }
  }
  @media (max-width: 425px){
    .nlx-unique__shotWrap{ padding: 18px 10px 8px; }
    .nlx-unique__band{ height: 115px; top: 60%; }
    .nlx-screenFX{ height: 260px; }
  }
  
  












  /* ===== Title wrapper (si no lo tienes ya) ===== */




  .nlx-unique {
margin-top: 90px;
margin-bottom: 90px;
  }


.nlx-unique__advHead{
  text-align: center;
  margin: 0 0 26px;

}

.nlx-unique__advTitle{
  margin: 100px 0;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #008180;
}

/* ===== Grid 6: 3 columnas / 2 filas ===== */
.nlx-unique__grid--6{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 42px;
  justify-items: center;
  align-items: start;
}

/* item */
.nlx-advU{
  width: 100%;
  max-width: 360px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: start;

  padding: 12px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: transparent;

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

.nlx-advU__icon{
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(0,128,128,.16);
  border: 1px solid rgba(0,128,128,.18);
  display: grid;
  place-items: center;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nlx-advU__icon i{
  font-size: 30px;
  color: rgba(0,0,0,.78);
}

.nlx-advU__text{
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 500;
  color: rgba(0,0,0,.78);
  transition: transform .18s ease, color .18s ease;
}

/* hover afecta icono + texto */
.nlx-advU:hover{
  transform: translateY(-8px);
  background: rgba(0,128,128,.06);
  border-color: rgba(0,128,128,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.nlx-advU:hover .nlx-advU__icon{
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 22px 46px rgba(0,0,0,.12);
  background: rgba(0,128,128,.20);
}
.nlx-advU:hover .nlx-advU__text{
  transform: translateY(-2px);
  color: rgba(0,0,0,.86);
}

/* ===== Reveal ===== */
.nlx-rvU{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
}
.nlx-rvU.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nlx-unique__grid--6{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 22px;
  }
  .nlx-advU{ max-width: 520px; }
}

@media (max-width: 425px){
  .nlx-unique__grid--6{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .nlx-advU{
    max-width: 560px;
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }
  .nlx-advU__icon{
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }
  .nlx-advU__text{ font-size: 17px; }
}

@media (max-width: 320px){
  .nlx-advU__text{ font-size: 16.5px; }
}



















/* ===== CIERRE (panel armónico) ===== */
.nlx-close{
  padding: 64px 18px 74px;          /* menos alto total */
  background: rgba(0,128,128,.06);
}

.nlx-close__wrap{
  width: min(980px, 100%);         /* un poquito más compacto */
  margin: 0 auto;
}

.nlx-closeCard{
  position: relative;
  padding: 22px 44px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  border-radius: 26px;              /* un poquito más compacto */
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    0 22px 70px rgba(0,0,0,.10),    /* menos “bloque” */
    inset 0 0 0 6px rgba(255,255,255,.72);
}

/* ===== BG decor ===== */
.nlx-closeCard__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* puntitos (más discretos) */
.nlx-closeCard__dots{
  position:absolute;
  left: -34px;
  top: -34px;
  width: 210px;
  height: 210px;
  opacity: .24;
  background-image: radial-gradient(rgba(0,0,0,.18) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 22px;
}

/* glows (más pequeños) */
.nlx-closeCard__glow{
  position:absolute;
  border-radius: 999px;
  filter: blur(26px);
  opacity: .50;
}
.nlx-closeCard__glow.g1{
  width: 360px; height: 360px;
  right: -130px; top: -130px;
  background: rgba(0,128,128,.18);
}
.nlx-closeCard__glow.g2{
  width: 320px; height: 320px;
  right: -150px; bottom: -150px;
  background: rgba(214,118,37,.14);
}

/* ===== COPY ===== */
.nlx-closeCard__copy{
  position: relative;
  z-index: 1;
  max-width: 60ch;
}

.nlx-closeCard__title{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 36px); /* un poco más controlado */
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #008080;
}

.nlx-closeCard__p{
  margin: 0 0 10px;
  font-size: 16.5px;                /* baja 18 → 16.5 (se ve menos apretado) */
  line-height: 1.62;
  font-weight: 600;
  color: rgba(0,0,0,.70);
}
.nlx-closeCard__p:last-of-type{ margin-bottom: 12px; }

/* chips */
.nlx-closeCard__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nlx-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;                /* más fino */
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.70);

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.nlx-chip i{ font-size: 18px; color: #008080; }

.nlx-chip:hover{
  transform: translateY(-2px);
  border-color: rgba(0,128,128,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

/* ===== VISUAL (más chico y armonioso) ===== */
.nlx-closeCard__visual{
  position: relative;
  z-index: 1;
  min-height: 240px;                /* baja altura */
  display: grid;
  place-items: center;
}

/* glow detrás: más pequeño */
.nlx-closeCard__visual::before{
  content:"";
  position:absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(0,128,128,.16);
  filter: blur(24px);
  opacity: .65;
  z-index: -1;
}

/* imagen principal: más pequeña */
.nlx-closeCard__img{
  width: min(340px, 92%);           /* antes 460 */
  height: auto;
  display: block;
  opacity: .98;

  filter:
    drop-shadow(0 18px 46px rgba(0,0,0,.14))
    drop-shadow(0 0 34px rgba(0,128,128,.14));

  transform: translateY(2px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}

/* hover elegante, sin exagerar */
.nlx-closeCard:hover .nlx-closeCard__img{
  transform: translateY(-6px) scale(1.01);
  filter:
    drop-shadow(0 22px 58px rgba(0,0,0,.16))
    drop-shadow(0 0 44px rgba(0,128,128,.18));
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nlx-close{
    padding: 56px 16px 66px;
  }

  .nlx-closeCard{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 18px;
    gap: 14px;
  }

  .nlx-closeCard__visual{
    order: -1;
    min-height: 210px;
  }

  .nlx-closeCard__img{
    width: min(320px, 92%);
  }

  .nlx-closeCard__chips{
    justify-content: center;
  }
}

@media (max-width: 425px){
  .nlx-close{
    padding: 50px 14px 60px;
  }

  .nlx-closeCard__p{
    font-size: 16px;
  }

  .nlx-closeCard__visual{
    min-height: 190px;
  }

  .nlx-closeCard__img{
    width: min(290px, 92%);
  }
}

@media (max-width: 320px){
  .nlx-closeCard__title{ font-size: 24px; }
  .nlx-closeCard__p{ font-size: 15.5px; }
  .nlx-closeCard__img{ width: min(270px, 92%); }
}



























/* ===== Reveal ===== */
.nlx-rvC{
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.nlx-rvC.is-in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .nlx-close{ padding:  64px 28px 74px; }
  .nlx-closeCard{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 34px;
  }
  .nlx-closeCard__visual{
    order: -1;
    min-height: 280px;
  }
  .nlx-visualStack{
    height: 280px;
  }
  .nlx-miniCard{
    left: 14px;
    right: 14px;
  }
  .nlx-miniCard.m2{ width: 92%; right: 14px; }
  .nlx-closeCard__chips{ justify-content: center; }
}

@media (max-width: 425px){
  .nlx-close{ padding: 52px 14px 66px; }
  .nlx-closeCard__p{ font-size: 17px; }
  .nlx-visualStack{ height: 260px; }
  .nlx-miniCard{ padding: 11px 12px; }
  .nlx-miniCard__avatar{ width: 42px; height: 42px; }
}

@media (max-width: 320px){
  .nlx-closeCard__p{ font-size: 16.5px; }
  .nlx-miniCard__score{ padding: 7px 10px; }
}









/* ===============================
   FIX PRO: sin espacio lateral + sin “encierro”
================================ */

/* 1) No scroll fantasma lateral */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}

/* 2) Causa #1 de overflow: elementos con 110vw / 100vw + translate */
.nlx-screenFX{
  width: min(980px, 100vw);     /* permitido, pero no más que viewport */
  max-width: 100%;
}

/* 3) Banda naranja FULL SCREEN (sin encerrar) */
.nlx-unique__band{
  position: absolute;
  top: 52%;
  left: 50%;
  width: 100vw;
  height: 160px;
  margin-left: -50vw;           /* clave full-bleed */
  transform: none;              /* importantísimo: NO translate aquí */
  background: #d67625;
  z-index: 0;
}



/* 5) Mantén tu card y sus decoraciones (NO matamos ::before/::after).
      Solo hacemos que la “media” sea transparente y no parezca caja */
.nlx-bCard__media{
  background: transparent;
  border: 0;
  box-shadow: none;
}


/* ===== CONTENEDOR (El cuadro de arriba) ===== */
.nlx-bCard__media {
  /* 1. Definimos el tamaño del escenario */
  height: 320px !important; 
  width: 100% !important;
  
  /* 2. CENTRADO OBLIGATORIO */
  display: flex !important;
  align-items: center !important;   /* Vertical */
  justify-content: center !important; /* Horizontal */
  
  /* Limpieza */
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* ===== LA IMAGEN ===== */
.nlx-bImg {
  /* 3. TAMAÑO FORZADO EN PIXELES (Aquí está la solución) */
  /* No uses porcentajes, dale píxeles reales para que sea GRANDE */
  height: 250px !important; 
  width: auto !important;   /* Mantiene la proporción */
  
  /* 4. Quitar posición absoluta para que el Flexbox funcione */
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  
  /* Ajuste de imagen */
  object-fit: contain !important;
  
  /* Estado inicial: Oculto */
  display: none !important; 
}

/* ===== IMAGEN ACTIVA ===== */
.nlx-bImg.is-active {
  /* 5. Al activarse, se vuelve un bloque visible */
  display: block !important;
  
  /* Animación simple de aparición */
  animation: golpeDeVista 0.4s ease forwards;
}

@keyframes golpeDeVista {
  0% { 
    opacity: 0; 
    transform: scale(0.8); /* Empieza un poco más chica */
  }
  100% { 
    opacity: 1; 
    transform: scale(1); /* Crece a su tamaño normal (250px) */
  }
}



/* 8) Responsive: recorta SOLO lo que se sale del viewport (no el contenido) */
.nlx-hero,
.nlx-how,
.nlx-benefits,
.nlx-unique,
.nlx-close{
  overflow-x: clip;
}
@supports not (overflow: clip){
  .nlx-hero,
  .nlx-how,
  .nlx-benefits,
  .nlx-unique,
  .nlx-close{ overflow-x: hidden; }
}

/* 9) Ajustes mobile banda */
@media (max-width: 980px){
  .nlx-unique__band{ height: 140px; top: 56%; }
}
@media (max-width: 425px){
  .nlx-unique__band{ height: 115px; top: 60%; }
}








/* ===========================
   FIX: Banda naranja full-width SIN scroll raro
   =========================== */

/* corta overflow horizontal sin matar sombras verticales */
html, body{ overflow-x: clip; }
@supports not (overflow: clip){
  html, body{ overflow-x: hidden; }
}

/* el section se vuelve el "ancla" de la franja */
.nlx-unique{
  position: relative;
  overflow-x: clip; /* evita el scroll fantasma en mobile */
}
@supports not (overflow: clip){
  .nlx-unique{ overflow-x: hidden; }
}

/* franja naranja al ancho real del viewport */
.nlx-unique::before{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30%;                 /* ajusta si quieres */
  width: 100vw;             /* ancho pantalla */
  height: 160px;
  background: #d87625;      /* tu naranja */
  z-index: 0;
}

/* si tu navegador soporta dvw, mejor (evita micro-scroll por scrollbar) */
@supports (width: 100dvw){
  .nlx-unique::before{ width: 100dvw; }
}

/* el wrap ya no necesita ser “contenedor de la franja” */
.nlx-unique__shotWrap{
  position: relative;
  isolation: isolate;
  overflow: visible;        /* que no recorte nada */
}

/* apaga/oculta la banda vieja (si aún existe en HTML) */
.nlx-unique__band{
  display: none !important;
}

/* screenshot: se queda bonito, sin “caja rara” extra */
.nlx-unique__shot{
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 38px 110px rgba(0,0,0,.30);
}

/* FX: no uses 110vw (eso crea scroll). Déjalo contenido. */
.nlx-screenFX{
  width: min(980px, 100%);
  max-width: 100%;
  z-index: 0;
}

/* responsive alturas */
@media (max-width: 980px){
  .nlx-unique::before{ height: 140px; top: 10%; }
}
@media (max-width: 425px){
  .nlx-unique::before{ height: 115px; top: 10%; }
}

















