   *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    :root{
      --bg:#050505;
      --card:#101010;
      --soft:#1b1b1b;
      --red:#d90429;
      --red2:#ff1e3c;
      --white:#ffffff;
      --gray:#a1a1aa;
      --border:rgba(255,255,255,.08);
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      background:var(--bg);
      color:white;
      font-family:'Montserrat',sans-serif;
      overflow-x:hidden;
    }

    h1,h2,h3,h4{
      font-family:'Anton',sans-serif;
    }

    img{
      width:100%;
      display:block;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:min(1400px,92%);
      margin:auto;
    }

    /* ========================= */
    /* Fondo FX */
    /* ========================= */

    .bg-glow{
      position:fixed;
      inset:0;
      overflow:hidden;
      z-index:-1;
      pointer-events:none;
    }

    .glow{
      position:absolute;
      border-radius:50%;
      filter:blur(120px);
      opacity:.35;
    }

    .glow.red{
      width:500px;
      height:500px;
      background:#ff0037;
      top:-100px;
      left:-100px;
    }

    .glow.blue{
      width:400px;
      height:400px;
      background:#00bfff;
      bottom:-100px;
      right:-100px;
    }

    /* ========================= */
    /* Barra de navegación */
    /* ========================= */

    nav{
      position:fixed;
      top:0;
      width:100%;
      z-index:999;
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--border);
      background:rgba(0,0,0,.45);
    }

    .nav-wrapper{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:18px 0;
    }

    .logo h1{
      font-size:1.4rem;
      letter-spacing:.35em;
      font-weight:900;
    }

    .logo span{
      display:block;
      margin-top:4px;
      color:#ffffff;
      font-size:.7rem;
      letter-spacing:.35em;
      text-transform:uppercase;
    }

    .nav-buttons{
      display:flex;
      gap:14px;
    }

    .btn{
      border:none;
      cursor:pointer;
      transition:.35s ease;
      border-radius:999px;
      font-weight:700;
    }

    .btn-outline{
      padding:14px 22px;
      background:transparent;
      border:1px solid var(--border);
      color:white;
    }

    .btn-outline:hover{
      border-color:var(--red);
      background:rgba(255,0,55,.08);
    }

    .btn-primary{
      padding:14px 24px;
      background:linear-gradient(135deg,var(--red),var(--red2));
      color:white;
      box-shadow:0 0 35px rgba(255,0,55,.35);
    }

    .btn-primary:hover{
      transform:translateY(-2px) scale(1.02);
    }

    /* ========================= */
    /* HERO */
    /* ========================= */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
      padding-top:120px;
      padding-bottom:80px;
    }

    .tag{
      display:inline-flex;
      align-items:center;
      padding:10px 18px;
      border-radius:999px;
      border:1px solid rgba(255,0,55,.25);
      background:rgba(255,0,55,.08);
      color:#ff7a8f;
      margin-bottom:28px;
      font-size:.85rem;
      letter-spacing:.2em;
      text-transform:uppercase;
    }

    .hero h2{
      font-size:6rem;
      line-height:.92;
      font-weight:900;
      margin-bottom:28px;
    }

    .hero h2 span{
      color:var(--red);
    }

    .hero p{
      color:var(--gray);
      font-size:1.15rem;
      line-height:1.8;
      max-width:620px;
      margin-bottom:42px;
    }

    .hero-actions{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
      margin-bottom:60px;
    }

    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:28px;
      max-width:500px;
    }

    .hero-stats h3{
      font-size:2.2rem;
      color:var(--red);
      margin-bottom:8px;
    }

    .hero-stats p{
      font-size:.9rem;
      line-height:1.5;
      margin:0;
    }

    .hero-image{
      position:relative;
      border-radius:40px;
      overflow:hidden;
      border:1px solid var(--border);
      background:#111;
      box-shadow:0 0 80px rgba(255,0,55,.18);
    }

    .hero-image img{
      height:780px;
      object-fit:cover;
    }

    .hero-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.2)
      );
    }

    .hero-content{
      position:absolute;
      bottom:40px;
      left:40px;
      right:40px;
    }

    .badge{
      display:inline-block;
      padding:10px 18px;
      border-radius:999px;
      background:var(--red);
      font-size:.8rem;
      font-weight:700;
      margin-bottom:20px;
      box-shadow:0 0 25px rgba(255,0,55,.45);
    }

    .hero-content h3{
      font-size:3rem;
      margin-bottom:18px;
    }

    .hero-content p{
      color:#d4d4d8;
      margin-bottom:24px;
    }

    /* ========================= */
    /* SECTION */
    /* ========================= */

    section{
      padding:120px 0;
      position:relative;
    }

    .section-tag{
      color:var(--red);
      text-transform:uppercase;
      letter-spacing:.4em;
      font-size:.8rem;
      margin-bottom:20px;
      font-weight:700;
    }

    .section-title{
      font-size:4rem;
      line-height:1;
      font-weight:900;
      margin-bottom:24px;
    }

    .section-title span{
      color:var(--red);
    }

    .section-desc{
      color:var(--gray);
      max-width:760px;
      line-height:1.9;
      font-size:1.1rem;
    }

    /* ========================= */
    /* PRODUCTS */
    /* ========================= */

    .products-grid{
      margin-top:70px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:28px;
    }

    .card{
      background:rgba(255,255,255,.03);
      border:1px solid var(--border);
      border-radius:32px;
      overflow:hidden;
      transition:.45s ease;
      position:relative;
    }

    .card:hover{
      transform:translateY(-10px);
      border-color:rgba(255,0,55,.35);
      box-shadow:0 0 40px rgba(255,0,55,.15);
    }

    .card-image{
      position:relative;
      overflow:hidden;
    }

    .card-image img{
      height:340px;
      object-fit:cover;
      transition:1s ease;
    }

    .card:hover .card-image img{
      transform:scale(1.08);
    }

    .card-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.15)
      );
    }

    .promo-pill{
      position:absolute;
      top:18px;
      left:18px;
      padding:10px 14px;
      border-radius:999px;
      background:var(--red);
      font-size:.75rem;
      font-weight:700;
      box-shadow:0 0 25px rgba(255,0,55,.35);
    }

    .card-body{
      padding:28px;
    }

    .card h3{
      font-size:1.7rem;
      margin-bottom:14px;
    }

    .card p{
      color:var(--gray);
      line-height:1.8;
      font-size:.95rem;
      margin-bottom:24px;
    }

    .gift-box{
      background:rgba(255,0,55,.08);
      border:1px solid rgba(255,0,55,.18);
      padding:18px;
      border-radius:22px;
      margin-bottom:24px;
    }

    .gift-box span{
      color:#ff7a8f;
      text-transform:uppercase;
      font-size:.75rem;
      letter-spacing:.2em;
      display:block;
      margin-bottom:10px;
    }

    .gift-box h4{
      font-size:1.1rem;
    }

    .card button{
      width:100%;
      padding:16px;
      border-radius:999px;
      background:white;
      color:black;
      font-weight:800;
      border:none;
      cursor:pointer;
      transition:.35s ease;
    }

    .card button:hover{
      background:var(--red);
      color:white;
    }

    /* ========================= */
    /* BENEFITS */
    /* ========================= */

    .benefits{
      background:rgba(255,255,255,.02);
      border-top:1px solid var(--border);
      border-bottom:1px solid var(--border);
    }

    .benefits-grid{
      margin-top:70px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:28px;
    }

    .benefit-card{
      padding:40px;
      border-radius:30px;
      border:1px solid var(--border);
      background:rgba(0,0,0,.35);
    }

    .benefit-icon{
      width:64px;
      height:64px;
      border-radius:20px;
      background:rgba(255,0,55,.08);
      border:1px solid rgba(255,0,55,.15);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:26px;
    }

    .benefit-dot{
      width:18px;
      height:18px;
      border-radius:50%;
      background:var(--red);
      box-shadow:0 0 25px rgba(255,0,55,.45);
    }

    .benefit-card h3{
      margin-bottom:16px;
      font-size:1.6rem;
    }

    .benefit-card p{
      color:var(--gray);
      line-height:1.8;
    }

    /* ========================= */
    /* FORM */
    /* ========================= */

    .form-box{
      display:grid;
      grid-template-columns:1fr 1fr;
      border-radius:40px;
      overflow:hidden;
      border:1px solid var(--border);
      background:rgba(255,255,255,.03);
      backdrop-filter:blur(20px);
    }

    .form-info{
      padding:70px;
      border-right:1px solid var(--border);
    }

    .form-info ul{
      margin-top:40px;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .form-info li{
      display:flex;
      gap:14px;
      align-items:flex-start;
      color:var(--gray);
    }

    .dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--red);
      margin-top:8px;
    }

    .form-area{
      padding:70px;
    }

    .input-group{
      margin-bottom:24px;
    }

    .input-group label{
      display:block;
      margin-bottom:12px;
      text-transform:uppercase;
      font-size:.8rem;
      letter-spacing:.2em;
      color:#888;
    }

    .input-group input,
    .input-group select{
      width:100%;
      height:60px;
      border-radius:20px;
      border:1px solid var(--border);
      background:rgba(0,0,0,.35);
      color:white;
      padding:0 22px;
      font-size:1rem;
      outline:none;
    }

    .input-group input:focus,
    .input-group select:focus{
      border-color:var(--red);
    }

    .submit-btn{
      width:100%;
      height:62px;
      border:none;
      border-radius:999px;
      background:linear-gradient(
        135deg,
        var(--red),
        var(--red2)
      );
      color:white;
      font-size:1rem;
      font-weight:800;
      cursor:pointer;
      transition:.35s ease;
      box-shadow:0 0 45px rgba(255,0,55,.35);
    }

    .submit-btn:hover{
      transform:translateY(-2px) scale(1.01);
    }

    /* ========================= */
    /* FINAL CTA */
    /* ========================= */

    .final{
      text-align:center;
      overflow:hidden;
    }

    .final h2{
      font-size:6rem;
      line-height:.95;
      margin-bottom:32px;
      font-weight:900;
    }

    .final h2 span{
      color:var(--red);
    }

    .final p{
      color:var(--gray);
      max-width:800px;
      margin:auto;
      line-height:1.9;
      font-size:1.2rem;
      margin-bottom:50px;
    }

    .final-actions{
      display:flex;
      justify-content:center;
      gap:20px;
      flex-wrap:wrap;
    }

    /* ========================= */
    /* MOBILE BAR */
    /* ========================= */

    .mobile-bar{
      position:fixed;
      bottom:0;
      left:0;
      width:100%;
      background:rgba(0,0,0,.75);
      backdrop-filter:blur(14px);
      border-top:1px solid var(--border);
      padding:14px;
      display:none;
      gap:12px;
      z-index:999;
    }

    .mobile-bar button{
      flex:1;
      height:56px;
      border-radius:18px;
      border:none;
      font-weight:800;
      cursor:pointer;
    }

    .mobile-bar .whatsapp{
      background:rgba(255,255,255,.06);
      color:white;
      border:1px solid var(--border);
    }

    .mobile-bar .promo{
      background:var(--red);
      color:white;
      box-shadow:0 0 30px rgba(255,0,55,.35);
    }

    /* ========================= */
    /* RESPONSIVE */
    /* ========================= */

    @media(max-width:1200px){

      .products-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .benefits-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .hero h2{
        font-size:4.5rem;
      }

    }

    /* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  position:relative;
  border-top:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(
      to top,
      rgba(255,0,55,.08),
      transparent
    ),
    #050505;
  overflow:hidden;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:70px;
  padding:100px 0 70px;
  position:relative;
}

.footer-brand{
  position:relative;
}

.footer-logo{
  margin-bottom:28px;
}

.logo-placeholder{
  width:180px;
  height:70px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Space Grotesk',sans-serif;
  font-size:1.6rem;
  font-weight:900;
  letter-spacing:.25em;
  position:relative;
  z-index:2;
}

.footer-brand p{
  color:#a1a1aa;
  line-height:1.9;
  max-width:420px;
  position:relative;
  z-index:2;
}

.footer-glow{
  position:absolute;
  width:280px;
  height:280px;
  border-radius:50%;
  background:#ff0037;
  filter:blur(120px);
  opacity:.18;
  top:-40px;
  left:-60px;
}

.footer-column h3{
  font-size:1.3rem;
  margin-bottom:28px;
  font-family:'Space Grotesk',sans-serif;
  position:relative;
}

.footer-column h3::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-12px;
  width:50px;
  height:2px;
  background:#d90429;
}

.footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.footer-links a{
  color:#a1a1aa;
  text-decoration:none;
  transition:.3s ease;
  position:relative;
}

.footer-links a:hover{
  color:white;
  padding-left:6px;
}

.footer-cta{
  margin-top:35px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 26px;
  border-radius:999px;
  background:linear-gradient(
    135deg,
    #d90429,
    #ff1e3c
  );
  color:white;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.05em;
  transition:.35s ease;
  box-shadow:0 0 35px rgba(255,0,55,.25);
}

.footer-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 0 45px rgba(255,0,55,.4);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:24px 0;
  background:rgba(255,255,255,.02);
}

.footer-bottom-wrapper{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  color:#71717a;
  font-size:.9rem;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:900px){

  .footer-grid{
    grid-template-columns:1fr;
    gap:50px;
    padding:80px 0 50px;
  }

  .footer-brand p{
    max-width:100%;
  }

}

@media(max-width:640px){

  .footer{
    padding-bottom:90px;
  }

  .footer-grid{
    gap:45px;
  }

  .footer-column h3{
    font-size:1.15rem;
  }

  .footer-links{
    gap:16px;
  }

  .footer-cta{
    width:100%;
  }

  .footer-bottom-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

}

    @media(max-width:900px){

      .hero-grid,
      .form-box{
        grid-template-columns:1fr;
      }

      .hero-image img{
        height:520px;
      }

      .hero h2{
        font-size:3.5rem;
      }

      .section-title{
        font-size:3rem;
      }

      .final h2{
        font-size:3.8rem;
      }

      .form-info{
        border-right:none;
        border-bottom:1px solid var(--border);
      }

    }

    @media(max-width:640px){

      .nav-buttons{
        display:none;
      }

      .hero{
        padding-top:80px;
      }

      .hero h2{
        font-size:3rem;
      }

      .hero-actions{
        flex-direction:column;
      }

      .products-grid,
      .benefits-grid{
        grid-template-columns:1fr;
      }

      .hero-stats{
        grid-template-columns:1fr;
      }

      .section-title{
        font-size:2.5rem;
      }

      .final h2{
        font-size:2.8rem;
      }

      .hero-content{
        left:24px;
        right:24px;
        bottom:24px;
      }

      .hero-content h3{
        font-size:2rem;
      }

      .form-info,
      .form-area{
        padding:40px 28px;
      }

      .mobile-bar{
        display:flex;
      }

      body{
        padding-bottom:95px;
      }

    }
