/* =========================
   RESET + BASE
========================= */
:root{
    --bg:#000;
    --text:#fff;
    --muted:rgba(255,255,255,.65);
    --line:rgba(255,255,255,.14);
    --pill:rgba(255,255,255,.10);
  
    --pageText:#111;
    --pageBg:#ffffff;
  
    --container: 1180px;       /* ancho max para desktop */
    --pad: 16px;               /* padding lateral base */
    --radius: 999px;
  }
  
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  body{
    font-family:'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin:0;
    color:var(--pageText);
    background:var(--pageBg);
  
    /* IMPORTANTE: tu body estaba centrando todo con flex.
       Eso te rompe navbars full width y otras secciones.
       Mejor deja body normal. */
    text-align: center;
  }
  
  /* Helpers */
  a{ color:inherit; }
  img{ max-width:100%; height:auto; display:block; }
  
  /* Contenedor general opcional */
  .wrap{
    width:100%;
    max-width: var(--container);
    margin:0 auto;
    padding:0 var(--pad);
  }
  
  /* =========================
     TU SECCIÓN PRINCIPAL (content)
  ========================= */
  .content{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 24px var(--pad);
    margin-top: 10px;
  
    /* tu gradiente original, pero sin forzar negro raro a los lados */
    background:
      linear-gradient(to bottom, rgba(0,0,0,0), rgb(0,0,0)),
      linear-gradient(to right, rgb(0,0,0), rgb(0,0,0));
  }
  
  /* Si quieres que el área negra sea full width,
     puedes envolverla en un div full-width y dentro .content.
     Pero así ya queda responsivo. */
  
  /* Tipografía general */
  .logo{
    width: 70px;
    margin: 18px auto 20px;
  }
  h1{
    font-size: clamp(24px, 3.3vw, 40px);
    margin: 10px 0;
    color: #fff;
    font-weight: 400;
    margin-top: -30px;
  }
  p{
    font-size: 16px;
    margin: 10px 0;
    color: rgba(255,255,255,.85);
  }
  
  /* Form */
  form{ margin: 18px 0; }
  input[type="email"]{
    padding: 18px 20px;
    width: min(520px, 92%);
    margin: 0 auto 10px;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 999px;
    font-size: 16px;
    outline: none;
  }
  input[type="email"]:focus{
    border-color: rgba(0,0,0,.35);
  }
  
  button{
    padding: 18px 20px;
    background-color: #fff;
    color: #080808;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    width: min(280px, 70%);
    font-size: 16px;
    font-weight: 600;
  }
  button:hover{
    background-color: rgb(172, 172, 172);
    color: rgb(8, 8, 8);
  }
  
  .small-text{
    font-size: 11px;
    color: rgba(255,255,255,.7);
    margin-top: 16px;
    line-height: 1.4;
  }
  
  .illustration{
    width: min(420px, 95%);
    margin: 18px auto 0;
  }
  
  /* =========================
     FEATURES
  ========================= */
  .feature-container{
    width: min(980px, 92%);
    margin: 20px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  
    border-radius: 20px 20px 0 0;
    overflow: hidden;
  }
  
  .feature-item{
    background-color: transparent;
    border-radius: 12px;
    padding: 18px;
    text-align: left;
  }
  
  .feature-item .icon img{
    width: 46px;
    height: 46px;
    margin: 0 0 10px 0;
  }
  
  .feature-item .text h3{
    color: #111;
    font-size: 1.1em;
    margin: 0;
  }
  .feature-item .text p{
    color: rgba(0,0,0,.6);
    font-size: 0.98em;
    margin: 10px 0 0;
  }
  
  /* Desktop: 2 columnas */
  @media (min-width: 900px){
    .feature-container{
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* =========================
     FAQ
  ========================= */
  .faq-section{
    width: min(980px, 92%);
    margin: 0 auto;
    padding: 20px var(--pad);
    text-align: left;
  }
  .faq-section h2{
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
  }
  .faq-item{
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 12px 0;
  }
  .faq-question{
    background: none;
    border: none;
    font-size: 18px;
    text-align: left;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
  }
  .faq-question:hover,
  .faq-question:focus,
  .faq-question:active{
    color:#000;
    outline:none;
    background:transparent;
  }
  .faq-icon{
    font-size: 24px;
    transition: transform 0.25s ease;
  }
  .faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .faq-answer p{
    margin: 10px 0;
    font-size: 16px;
    color: rgba(0,0,0,.65);
  }
  
  /* =========================
     FLOATING BANNER (tu código)
  ========================= */
  .floating-banner{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, -110%);
    width: min(980px, 96%);
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    padding: 10px;
    transition: transform 0.25s ease-in-out;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 16px 16px;
  }
  .floating-banner.is-visible{
    transform: translate(-50%, 0);
  }
  .banner-header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color:#111;
  }
  .banner-text{
    flex: 1;
    text-align: center;
  }
  .close-button{
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
  }
  .banner-buttons{
    width: min(360px, 92%);
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
  .start-button, .info-button{
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
  }
  .start-button{
    background-color: #000;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    flex: 1;
    text-align:center;
  }
  .info-button{
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    flex: 1;
  }
  
  /* =========================
     SCROLL CARDS (tu carrusel)
  ========================= */
  .scroll-1::-webkit-scrollbar{ width:8px; height:8px; }
  .scroll-1::-webkit-scrollbar-thumb{ border-radius: 20px; background:#888; }
  
  .container{
    display:flex;
    overflow-x:auto;
    gap: 10px;
    padding: 18px;
    width: min(980px, 94%);
    margin: 0 auto;
    height: 520px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    border-radius: 14px;
  }
  .container .card{
    flex: 0 0 86%;
    overflow: hidden;
    border-radius: 14px;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
  }
 .card__title{
    padding: 100 40px;
  }
  @media (min-width: 900px){
    .container .card{ flex-basis: 30%; }
  }
  
  /* =========================
     WhatsApp Floating Button
  ========================= */
  .float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:30px;
    right:30px;
    background-color:#25d366;
    color:#fff;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.25);
    z-index:100;
    display:grid;
    place-items:center;
  }
  .float:hover{
    text-decoration:none;
    color:#25d366;
    background-color:#fff;
  }
  .my-float{ margin-top:0; }
  
  /* =========================================================
     NAVBAR SHOPIFY STYLE (MOBILE + DESKTOP)
     - Corrige tus: width:610px y padding:0 370px (eso rompía TODO)
  ========================================================= */
  
  /* Topbar full width */
  .topbar{
    position: fixed;
    top: 0;
    z-index: 2000;
    background: var(--bg);
    border-bottom: 1px solid rgba(255,255,255,.08);
    width: 100%;
  }

  
  
  /* Inner centrado con padding correcto */
  .topbar__inner{
    height: 64px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Brand */
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
    color: var(--text);
    text-decoration:none;
    min-width: 160px;
  }
  .brand__bag{
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display:grid;
    place-items:center;
    background:#95bf47;
    color:#fff;
    font-weight:800;
    transform: skewX(-8deg);
  }
  .brand__text{
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    font-style: italic;
    padding-right: 0; /* quitamos padding extraño */
  }
  
  /* Right side */
  .topbar__right{
    display:flex;
    align-items:center;
    gap: 16px;
  }
  
  /* CTA blanco subrayado (como Shopify) */
  .topbar__cta{
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
  }
  
  /* Icon buttons */
  .icon-btn{
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .hamburger{
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
    border-radius: 2px;
  }
  .hamburger::before,
  .hamburger::after{
    content:"";
    position:absolute;
    left:0;
    width:22px;
    height:2px;
    background:#fff;
    border-radius: 2px;
  }
  .hamburger::before{ top:-7px; }
  .hamburger::after{ top: 7px; }
  
  .x{
    width:22px;
    height:22px;
    position:relative;
    display:block;
  }
  .x::before,
  .x::after{
    content:"";
    position:absolute;
    left:10px;
    top:1px;
    width:2px;
    height:20px;
    background:#fff;
    border-radius:2px;
  }
  .x::before{ transform: rotate(45deg); }
  .x::after{ transform: rotate(-45deg); }
  
  /* ===== Overlay menu ===== */
  .menu{
    position: fixed;
    inset: 0;
    background: var(--bg);
    color: var(--text);
    z-index: 3000;
    display: flex;
    flex-direction: column;
  
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .menu.is-open{ transform: translateX(0); }
  
  /* Top inside menu */
  .menu__top{
    height: 64px;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu__topRight{
    display:flex;
    align-items:center;
    gap: 16px;
  }
  .menu__divider{
    height: 1px;
    background: rgba(255,255,255,.12);
  }
  
  /* Nav items (grandes como Shopify mobile) */
  .menu__nav{
    padding: 28px var(--pad) 0 var(--pad);
    display:flex;
    flex-direction: column;
    gap: 34px;
    flex: 1;
  }
  .menu__link{
    color:#fff;
    text-decoration:none;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: -0.4px;
  }
  .menu__item{
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
    letter-spacing: -0.4px;
  }
  .chev{
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,.7);
    border-bottom: 2px solid rgba(255,255,255,.7);
    transform: rotate(45deg);
    margin-left: 14px;
  }
  
  /* Pill (Winter Edition) */
  .menu__pill{
    margin-top: 10px;
    display:flex;
    align-items:center;
    gap: 12px;
    padding: 16px 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 999px;
    text-decoration:none;
    color:#fff;
    width: 100%;
    max-width: 720px;
  }
  .pill__dot{
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display:grid;
    place-items:center;
    background:#000;
    border: 1px solid rgba(255,255,255,.25);
    font-weight: 800;
  }
  
  /* Bottom buttons */
  .menu__bottom{
    padding: 18px var(--pad);
    border-top: 1px solid rgba(255,255,255,.12);
    display:flex;
    flex-direction: column;
    gap: 14px;
  }
  .btn{
    height: 64px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    text-decoration:none;
    font-size: 22px;
    font-weight: 700;
  }
  .btn--outline{
    color:#fff;
    border: 2px solid rgba(255,255,255,.85);
    background: transparent;
  }
  .btn--solid{
    color:#000;
    background:#fff;
    border: 2px solid #fff;
  }
  
  /* =========================
     MOBILE adjustments (pequeños)
  ========================= */
  @media (max-width: 420px){
    .menu__link, .menu__item{ font-size: 30px; }
    .btn{ font-size: 20px; }
    .topbar__cta{ font-size: 16px; }
  }
  
  /* =========================
     DESKTOP version
     - En desktop NO quieres overlay ocupando.
     - Mantén el sticky arriba.
  ========================= */
  @media (min-width: 1024px){
    :root{ --pad: 24px; }
  
  
  
    /* Si quieres mostrar links horizontales en desktop,
       agrega un <nav class="desktop-nav"> ... </nav> en el HTML.
       Aquí va el estilo por si lo agregas: */
    .desktop-nav{
      display:flex;
      gap: 22px;
      align-items:center;
      margin-left: 10px;
    }
    .desktop-nav a{
      color:#fff;
      text-decoration:none;
      font-size: 15px;
      opacity:.9;
    }
    .desktop-nav a:hover{ opacity:1; text-decoration:underline; }
  
  
  }
  
  /* =========================
     ACCESIBILIDAD (opcional)
  ========================= */
  @media (prefers-reduced-motion: reduce){
    .menu, .faq-answer, .faq-icon{
      transition:none !important;
    }
  }
  








  .col{
 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
    background-color: #fefefe;
    max-width: 100vw;
   
}

.com  {
    text-align: center;
   
    color: #080808;
    font-weight: 700;
}

.comes  {
  text-align: center;
 margin-top: -10px;
  color: #080808;
  font-weight: 400;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.slider-wrapper {
    display: flex;
    width: calc(200%); /* Asegura el ancho total del contenido */
    animation: slide 30s linear infinite; /* Animación continua */
}

.slider {
    display: flex;
}

.slider img {
    width: 100vw; /* Cada imagen ocupa el ancho de la pantalla */
    height:300px;
    flex-shrink: 0; /* Evita que las imágenes se reduzcan */
    max-width: 150px;
    margin-left: 20px;
   
}

/* Difuminado en los bordes */
.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px; /* Ajusta el ancho del efecto */
    z-index: 1;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to left, rgba(240, 240, 240, 0), rgb(255, 255, 255));
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to right, rgba(240, 240, 240, 0), rgb(255, 255, 255));
}

/* Consultas de medios para pantallas más grandes */
@media (min-width: 600px) {
    .slider img {
        width: 50%; /* Dos imágenes visibles en pantallas medianas */
    }
}

@media (min-width: 900px) {
    .slider img {
        width: 33.33%; /* Tres imágenes visibles en pantallas grandes */
    }
}

@media (min-width: 1200px) {
    .slider img {
        width: 25%; /* Cuatro imágenes visibles en pantallas extra grandes */
    }
}

/* Animación para deslizamiento continuo */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

























/* 🔒 BLOQUE AISLADO – sin h1 / h2 / p */

.mkc-novaLessCost,
.mkc-novaLessCost * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.mkc-novaLessCost {
  position: relative;
  padding: 150px 20px;
  color: #ffffff;
  background-color: #0b1f1a;
  background-image: url("https://cdn.shopify.com/b/shopify-brochure2-assets/dd46733601fdae19b8aeda1d021e94d6.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.mkc-novaWrap {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.mkc-novaHead {
  text-align: center;
  margin-bottom: 90px;
}

.mkc-novaTitle {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 8px;
}

.mkc-novaSub {
  font-size: 16px;
  color: #b7d6c6;
}

/* GRID */
.mkc-novaGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

/* CARD */
.mkc-novaCard {
  max-width: 360px;
}

.mkc-novaNum {
  font-size: 82px;
  font-weight: 500;
  margin-bottom: 18px;
  align-items: left;
  
}

.mkc-novaH3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.mkc-novaIco {
  color: #5fe3a1;
  font-size: 18px;
}

.mkc-novaTxt {
  font-size: 14px;
  line-height: 1.6;
  color: #b7d6c6;
  text-align: left;
}

.mkc-novaLine {
  width: 100%;
  max-width: 260px;
  height: 0.3px;
  margin: 14px 0 22px;
  background: linear-gradient(
    to right,
    rgba(95, 227, 161, 0.55)
  );
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .mkc-novaLessCost {
    padding-top: 70px;
    padding-bottom: 220px;
    background-size: 620% auto;
    background-position: 30% 110%;
  }
  .mkc-novaNum {
    margin-left: -170px;
    font-size: 70px;
    text-align: left;
     
   }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
  .mkc-novaGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
  }

  

  .mkc-novaCard {
    max-width: none;
  }
}























   /* ====== BLOQUE AISLADO (NO toca body, ni * global) ====== */
   .xqv-clientsNova{
    --xqv-bg:#fff;
    --xqv-text:#0b0b0b;
    --xqv-muted:#6b6b6b;

    --xqv-panel:#ffffff;
    --xqv-shadow:0 18px 40px rgba(0, 0, 0, 0.12);

    --xqv-line:#d7d7d9;
    --xqv-accent:#2f5bff;

    --xqv-radius:22px;
    --xqv-gap: clamp(24px, 3vw, 48px);

    /* sincroniza con JS (puedes cambiarlo en style="--xqv-interval:...") */
    --xqv-interval: var(--xqv-interval, 3500ms);

    width: min(1200px, 92vw);
    margin: 70px auto 80px;

    background: var(--xqv-bg);
    color: var(--xqv-text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  }

  .xqv-clientsNova,
  .xqv-clientsNova *{ box-sizing:border-box; }

  /* HEADER */
  .xqv-headNova{
    text-align:center;
    margin-bottom: 34px;
  }
  .xqv-titleNova{
    margin:0 0 10px;
    font-size: clamp(36px, 4.2vw, 54px);
    font-weight: 500;
    letter-spacing:-0.02em;
  }
  .xqv-subNova{
    margin:0;
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--xqv-muted);
    font-weight: 400;
  }

  /* DESKTOP GRID */
  .xqv-gridNova{
    display:grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--xqv-gap);
    align-items:center;
  }

  .xqv-panelNova{
    background: var(--xqv-panel);
    border-radius: var(--xqv-radius);
    padding: clamp(22px, 3vw, 36px);
    display:grid;
    place-items:center;
    min-height: 520px;
    overflow:hidden;
  }

  .xqv-wrapNova{
    width: min(520px, 90%);
    position: relative;
  }

  .xqv-imgNova{
    width:100%;
    display:block;
    border-radius: 16px;
    box-shadow: var(--xqv-shadow);
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s ease;
    user-select:none;
    -webkit-user-drag:none;
    background:#fff;
  }
  .xqv-imgNova.xqv-fade{
    opacity: 0;
    transform: translateY(6px);
  }

  .xqv-listNova{
    display:grid;
    gap: 26px;
    padding-right: 8px;
  }

  .xqv-itemNova{
    display:grid;
    grid-template-columns: 16px 1fr;
    column-gap: 16px;
    align-items:start;
    cursor: pointer;
    user-select: none;
  }

  /* Riel vertical gris */
  .xqv-railNova{
    position: relative;
    width: 16px;
    min-height: 100%;
  }
  .xqv-railNova::before{
    content:"";
    position:absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--xqv-line);
    border-radius: 99px;
  }

  /* Progreso azul */
  .xqv-progNova{
    position:absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 0%;
    background: var(--xqv-accent);
    border-radius: 99px;
    transform-origin: top;
  }

  /* activo/inactivo */
  .xqv-itemNova:not(.xqv-on) .xqv-hNova,
  .xqv-itemNova:not(.xqv-on) .xqv-pNova{
    opacity: .55;
    transition: opacity .25s ease;
  }
  .xqv-itemNova.xqv-on .xqv-hNova,
  .xqv-itemNova.xqv-on .xqv-pNova{
    opacity: 1;
  }

  .xqv-hNova{
    margin:0 0 6px;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 650;
    letter-spacing:-0.01em;
    text-align:left;
  }
  .xqv-pNova{
    margin:0;
    color: var(--xqv-muted);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.55;
    max-width: 46ch;
    text-align:left;
  }

  /* -------- MOBILE (NO slider) -------- */
  .xqv-stackNova{ display:none; }

  @media (max-width: 900px){
    .xqv-clientsNova{ margin: 46px auto 60px; }

    .xqv-gridNova{
      grid-template-columns: 1fr;
      gap: 22px;
    }

    /* ocultar desktop */
    .xqv-panelNova{ display:none; }
    .xqv-listNova{ display:none; }

    /* mostrar mobile stack */
    .xqv-stackNova{
      display: grid;
      gap: 18px;
    }

    .xqv-mItemNova{
      background: var(--xqv-panel);
      border-radius: var(--xqv-radius);
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .xqv-mImgNova{
      width: 100%;
      border-radius: 16px;
      box-shadow: var(--xqv-shadow);
      display:block;
      background:#fff;
    }

    .xqv-mH{
      margin:0 0 6px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing:-0.01em;
      text-align:left;
    }
    .xqv-mP{
      margin:0;
      color: var(--xqv-muted);
      font-size: 14px;
      line-height: 1.55;
      text-align:left;
    }
  }




























    /* =========================
     TIENDIFY   footer
  ========================= */
  
  :root{
    --tfy-bg:#ffffff;
    --tfy-card1:#3b00b7;
    --tfy-card2:#24007f;
  
    --tfy-white:#fff;
    --tfy-muted:rgba(255,255,255,.72);
    --tfy-muted2:rgba(255,255,255,.55);
  
    --tfy-shadow:0 18px 40px rgba(0,0,0,.10);
    --tfy-radius:34px;
  }
  
  /* contenedor raíz (NO toca body global) */
  .tfy-neo-wrap{
    
    display:flex;
    align-items:center;
    justify-content:center;
    padding:clamp(18px,4vw,60px);
    background:var(--tfy-bg);
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  }
  
  /* card */
  .tfy-neo-card{
    width:min(920px,100%);
    max-width:980px;
    background:linear-gradient(180deg,var(--tfy-card1),var(--tfy-card2));
    border-radius:var(--tfy-radius);
    box-shadow:var(--tfy-shadow);
    padding:clamp(26px,6vw,56px) clamp(22px,5vw,64px);
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  
  /* brillo decorativo */
  .tfy-neo-card::after{
    content:"";
    position:absolute;
    inset:-80px -120px auto auto;
    width:320px;
    height:320px;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), rgba(255,255,255,0) 60%);
    transform:rotate(12deg);
    pointer-events:none;
  }
  
  /* logo */
  .tfy-neo-logo{
    width:clamp(44px,6vw,66px);
    margin:0 auto clamp(14px,2.8vw,22px);
    display:block;
    opacity:.95;
  }
  
  /* título */
  .tfy-neo-title{
    margin:0 auto;
    max-width:19ch;
    font-weight:200;
    line-height:1.07;
    font-size:clamp(27px,4.8vw,44px);
    color:var(--tfy-white);
    letter-spacing:-0.02em;
  }
  
  /* subtítulo */
  .tfy-neo-sub{
    margin:clamp(12px,2.6vw,18px) auto 0;
    max-width:52ch;
    font-size:clamp(14px,2.2vw,18px);
    color:var(--tfy-muted);
    line-height:1.45;
  }
  
  /* formulario */
  .tfy-neo-form{
    margin-top:clamp(18px,3vw,24px);
    display:flex;
    justify-content:center;
  }
  
  /* input pill */
  .tfy-neo-pill{
    width:min(720px,100%);
    background:rgba(255,255,255,.95);
    border-radius:999px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 10px 22px rgba(0,0,0,.12);
  }
  
  .tfy-neo-input{
    border:0;
    outline:none;
    width:100%;
    background:transparent;
    font-size:clamp(13px,2.2vw,18px);
    padding:14px 10px 14px 18px;
    color:#222;
  }
  
  .tfy-neo-input::placeholder{
    color:rgba(0,0,0,.55);
  }
  
  /* botón flecha */
  .tfy-neo-btn{
    border:0;
    width:58px;
    height:58px;
    border-radius:999px;
    background:#111;
    display:grid;
    place-items:center;
    cursor:pointer;
    flex:0 0 auto;
    transition:transform .12s ease,opacity .12s ease;
  }
  
  .tfy-neo-btn:hover{transform:scale(1.03);}
  .tfy-neo-btn:active{transform:scale(.98);opacity:.92;}
  
  /* nota */
  .tfy-neo-note{
    margin:clamp(14px,2.5vw,18px) auto 0;
    font-size:clamp(12px,1.9vw,14px);
    color:var(--tfy-muted2);
  }
  
  /* desktop */
  @media (min-width:900px){
    .tfy-neo-card{
      width:min(860px,100%);
      padding:44px 80px;
    }
  
    .tfy-neo-title{
      max-width:38ch;
      font-size:34px;
      line-height:1.1;
    }
  
    .tfy-neo-sub{
      font-size:14px;
      max-width:60ch;
    }
  
    .tfy-neo-pill{
      width:520px;
      padding:8px;
    }
  
    .tfy-neo-btn{
      width:50px;
      height:50px;
    }
  
    .tfy-neo-input{
      font-size:14.5px;
      padding:12px 10px 12px 16px;
    }
  }