:root {
  --black: #020207;
  --white: #F5F4EF;
  --acid: #C8FF00;
  --electric: #00FFD1;
  --mid: #111118;
  --navy: #0D1B4B;
  --gold: #c8a800;
  --blue: #08b8ee;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--black);
  color:var(--white);
  font-family:'DM Sans', sans-serif;
  overflow-x:hidden;
}

/* ========================= */
/* TOPBAR */
/* ========================= */

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:28px;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 24px;
  z-index:101;
  color:#fff;
  font-size:13px;
}

.topbar-sep{
  margin:0 8px;
  opacity:.5;
}

/* ========================= */
/* NAV */
/* ========================= */

nav{
  position:fixed;
  top:28px;
  left:0;
  right:0;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  background:rgba(250,250,248,.98);
  border-bottom:1px solid rgba(13,27,75,.08);
  z-index:100;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.nav-logo-img{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
}

.nav-brand{
  font-family:'Bebas Neue', sans-serif;
  font-size:28px;
  letter-spacing:3px;
  color:var(--navy);
  font-weight:700;
}

.nav-ia{
  color:var(--gold);
  margin-left:6px;
}

nav ul{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
}

nav ul a{
  text-decoration:none;
  color:#111;
  font-size:16px;
  font-weight:500;
}

.nav-cta{
  background:var(--navy);
  color:#fff !important;
  padding:14px 26px;
  display:inline-block;
}

/* ========================= */
/* HAMBURGER */
/* ========================= */

.hamburger{
  display:none;
  background:none;
  border:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger-line{
  width:26px;
  height:3px;
  background:var(--navy);
}

/* ========================= */
/* MOBILE NAV */
/* ========================= */

.mobile-nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(250,250,248,.98);
  z-index:200;
  display:none;
  align-items:center;
  justify-content:center;
}

.mobile-nav-overlay.open{
  display:flex;
}

.mobile-nav-close{
  background:none;
  border:none;
  font-size:42px;
  color:var(--navy);
  margin-bottom:30px;
}

.mobile-nav-links{
  list-style:none;
  text-align:center;
}

.mobile-nav-links li{
  margin:24px 0;
}

.mobile-nav-link{
  text-decoration:none;
  font-family:'Bebas Neue', sans-serif;
  font-size:34px;
  color:var(--navy);
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  min-height:680px;
  padding:120px 24px 70px;
  background:
    radial-gradient(circle at 50% 25%, rgba(0,191,255,.08), transparent 28%),
    linear-gradient(180deg,#ffffff 0%, #fafafa 65%, #f4f7fb 100%);
  border-bottom:1px solid rgba(13,27,75,.08);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  position:relative;
}

.hero-logo-wrap{
  margin-bottom:22px;
}

.hero-title{
  font-family:'Bebas Neue', sans-serif;
  color:var(--navy);
}

.hero-title-vertical{
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:.82;
  margin-bottom:22px;
}

.hero-word{
  display:block;
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:3px;
  font-weight:900;
}

.hero-word-small{
  font-size:clamp(54px,5.2vw,92px);
  color:#07164a;
}

.hero-word-medium{
  font-size:clamp(70px,7vw,124px);
  color:var(--gold);
}

.hero-sub{
  margin-top:18px;
  max-width:980px;
  line-height:1.6;
  font-size:22px;
  color:#101010;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:32px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn-primary,
.btn-ghost{
  text-decoration:none;
  padding:18px 44px;
  min-width:190px;
  text-align:center;
  font-size:16px;
  font-weight:600;
  transition:.25s ease;
}

.btn-primary{
  background:var(--navy);
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(13,27,75,.18);
}

.btn-ghost{
  border:1px solid var(--navy);
  color:var(--navy);
  background:transparent;
}

.btn-ghost:hover{
  background:var(--navy);
  color:#fff;
}

/* ========================= */
/* SECTIONS */
/* ========================= */

.section{
  padding:100px 60px;
  background:var(--mid);
  position:relative;
}

.section-header{
  margin-bottom:40px;
}

.section-label{
  color:var(--acid);
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(48px,6vw,80px);
  color:var(--white);
}

.dim{
  color:var(--blue);
}

/* ========================= */
/* SERVICES PREMIUM */
/* ========================= */

.services-premium{
  background:
    radial-gradient(circle at top left, rgba(0,255,209,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(200,255,0,.06), transparent 26%),
    #111118;
  padding-top:120px;
  padding-bottom:120px;
}

.premium-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.08);
}

.premium-service-card{
  position:relative;
  min-height:420px;
  padding:56px 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
    #1b1b22;
  overflow:hidden;
  transition:.35s ease;
}

.premium-service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,255,209,.08);
}

.service-icon{
  color:var(--acid);
  font-size:34px;
  margin-bottom:34px;
}

.premium-service-card .service-num{
  position:absolute;
  top:28px;
  right:34px;
  font-family:'Bebas Neue', sans-serif;
  font-size:78px;
  color:rgba(255,255,255,.035);
}

.service-name{
  font-family:'Bebas Neue', sans-serif;
  color:#D4A017;
  font-size:34px;
  letter-spacing:2px;
  margin-bottom:22px;
}

.service-desc{
  color:rgba(245,244,239,.88);
  font-size:20px;
  line-height:1.75;
}

.service-tag{
  display:inline-block;
  margin-top:34px;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(200,255,0,.9);
  border:1px solid rgba(200,255,0,.18);
  padding:7px 12px;
}

.mini-list-title{
  margin-top:28px;
  margin-bottom:14px;
  color:#fff;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:15px;
  font-weight:700;
}

.mini-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:24px;
}

.mini-list li{
  position:relative;
  padding-left:24px;
  color:rgba(245,244,239,.88);
}

.mini-list li::before{
  content:"✦";
  position:absolute;
  left:0;
  color:var(--acid);
}

/* ========================= */
/* PROCESS */
/* ========================= */

.process-section{
  padding:140px 60px;
  background:
  radial-gradient(circle at center,
  rgba(0,140,255,.06),
  transparent 45%),
  #020207;
}

.process-top{
  margin-bottom:90px;
}

.process-label{
  color:#c8ff00;
  letter-spacing:6px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:20px;
}

.process-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(72px,8vw,140px);
  line-height:.9;
  color:#fff;
}

.process-title span{
  color:#00bfff;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:70px;
  margin-top:70px;
}

.process-card{
  position:relative;
}

.process-circle{
  width:72px;
  height:72px;
  border-radius:50%;
  border:1px solid rgba(200,255,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#c8ff00;
  font-family:'Bebas Neue', sans-serif;
  font-size:28px;
  margin-bottom:34px;
}

.process-name{
  font-family:'Bebas Neue', sans-serif;
  font-size:34px;
  letter-spacing:2px;
  color:#fff;
  margin-bottom:20px;
}

.process-desc{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  font-size:20px;
}

.process-line{
  position:absolute;
  left:14%;
  right:14%;
  height:1px;
  margin-top:185px;
  background:rgba(200,255,0,.18);
}

/* ========================= */
/* ADVANTAGE */
/* ========================= */

.advantage-section{
  background:
  radial-gradient(circle at center,
  rgba(0,140,255,.06),
  transparent 45%),
  #020207;
}

.advantage-top{
  max-width:1200px;
  margin:0 auto 90px;
}

.advantage-label{
  color:#c8ff00;
  letter-spacing:6px;
  text-transform:uppercase;
  font-size:14px;
  margin-bottom:20px;
}

.advantage-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(70px,8vw,140px);
  line-height:.9;
  color:#f3f0eb;
}

.advantage-title span{
  color:#08bfff;
}

.advantage-list{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
}

.advantage-item{
  display:flex;
  gap:28px;
  padding:36px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.advantage-icon{
  width:56px;
  height:56px;
  min-width:56px;
  border:1px solid rgba(200,255,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#c8ff00;
}

.advantage-name{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

.advantage-desc{
  font-size:18px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
}

/* ========================= */
/* CTA */
/* ========================= */

.cta-section{
  padding:100px 60px;
  background:var(--navy);
}

.cta-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  max-width:1100px;
  margin:0 auto;
}

.cta-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(48px,7vw,96px);
  line-height:.95;
}

.line2{
  display:block;
  color:var(--blue);
}

.contact-form{
  background:rgba(255,255,255,.04);
  padding:40px;
  border:1px solid rgba(255,255,255,.08);
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  margin-bottom:8px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:16px;
  border:1px solid rgba(255,255,255,.2);
  font-family:'DM Sans', sans-serif;
}

.form-group textarea{
  min-height:120px;
}

.form-submit{
  width:100%;
  padding:18px;
  background:var(--acid);
  border:none;
  cursor:pointer;
  font-weight:700;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  position:relative;
  padding:40px;
  background:#1a1a1a;
  text-align:center;
}

.footer-logo-link{
  position:absolute;
  left:38px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-logo-img{
  width:62px;
  height:62px;
  object-fit:contain;
}

.footer-copy{
  color:#fff;
}

.footer-links{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer-link{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-size:14px;
}

.footer-link:hover{
  color:#c8ff00;
}

.footer-dot{
  color:rgba(255,255,255,.28);
}

/* ========================= */
/* WHATSAPP */
/* ========================= */

.whatsapp-float{
  position:fixed;
  bottom:28px;
  right:28px;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  padding:14px 20px;
  border-radius:50px;
  z-index:999;
}

/* ========================= */
/* REVEAL */
/* ========================= */

.reveal{
  opacity:1;
  transform:translateY(0);
  transition:all .8s ease;
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:1100px){

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

  .process-line{
    display:none;
  }

}

@media(max-width:1000px){

  .premium-services-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:900px){

  nav{
    padding:0 24px;
  }

  nav ul{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .cta-inner{
    grid-template-columns:1fr;
  }

  .section,
  .cta-section,
  .process-section{
    padding:80px 24px;
  }

}

@media(max-width:768px){

  .advantage-item{
    flex-direction:column;
    gap:18px;
  }

  footer{
    padding-top:90px;
  }

  .footer-logo-link{
    left:50%;
    top:26px;
    transform:translateX(-50%);
  }

}

@media(max-width:700px){

  .process-grid,
  .premium-services-grid{
    grid-template-columns:1fr;
  }

  .process-title,
  .advantage-title{
    font-size:64px;
  }

}

@media(max-width:480px){

  .topbar{
    font-size:11px;
    padding:0 12px;
  }

  nav{
    height:66px;
  }

  .nav-logo-img{
    width:36px;
    height:36px;
  }

  .nav-brand{
    font-size:24px;
  }

  .hero{
    padding:125px 16px 70px;
  }

  .hero-word-small{
    font-size:clamp(40px,13vw,58px);
  }

  .hero-word-medium{
    font-size:clamp(54px,16vw,76px);
  }

  .hero-word-big{
    font-size:clamp(64px,19vw,92px);
  }

  .hero-sub{
    font-size:16px;
  }

  .btn-primary,
  .btn-ghost{
    width:100%;
    padding:16px 24px;
  }

  .hero-actions{
    width:100%;
  }

}

/* HERO WORDS FIX SIN SHADOW */
.hero-word,
.hero-word-small,
.hero-word-medium,
.hero-word-big{
  text-shadow:none !important;
  filter:none !important;
}

.hero-word-small{
  font-size:clamp(54px,5.2vw,92px) !important;
  color:#07164a !important;
}

.hero-word-medium{
  font-size:clamp(70px,7vw,124px) !important;
  color:#c8a800 !important;
}

.hero-word-big{
  font-size:clamp(86px,8.6vw,150px) !important;
  color:#08b8ee !important;
}
/* HERO LOGO MÁS GRANDE */
.hero-logo-img{
  width: 230px !important;
  max-width: none !important;
  height: auto !important;
  display:block;
}
/* HERO PREMIUM POLISH */
.hero-logo-wrap{
  border:none !important;
  outline:none !important;
  background:transparent !important;
  margin-bottom:32px !important;
}

.hero-logo-img{
  border:none !important;
  outline:none !important;
  background:transparent !important;
}

.hero-title-vertical{
  margin-top:8px !important;
}

.btn-primary{
  box-shadow:0 14px 35px rgba(13,27,75,.18);
}

.btn-ghost{
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(8px);
}
.hero-sub{
  color:#111 !important;
  font-weight:500;
}
.hero{
  background:
    radial-gradient(circle at 50% 22%,
    rgba(0,140,255,.07),
    transparent 26%),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f8fb 100%
    ) !important;
}
.hero-sub{
  max-width:900px !important;
  font-size:20px !important;
  font-weight:500 !important;
  line-height:1.5 !important;
}
/* ========================= */
/* NAV PREMIUM */
/* ========================= */

nav{
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.82) !important;
  border-bottom:1px solid rgba(13,27,75,.06);
  box-shadow:
    0 4px 24px rgba(13,27,75,.04);
}

/* LINKS */
nav ul{
  gap:42px !important;
}

nav ul a{
  position:relative;
  font-size:15px !important;
  font-weight:600 !important;
  letter-spacing:.3px;
  color:#111 !important;
  transition:.25s ease;
}

/* HOVER */
nav ul a:hover{
  color:#0D1B4B !important;
}

/* LINE EFFECT */
nav ul a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0%;
  height:2px;
  background:#08b8ee;
  transition:.28s ease;
}

nav ul a:hover::after{
  width:100%;
}

/* BOTÓN */
.nav-cta{
  border-radius:2px;
  box-shadow:
    0 12px 28px rgba(13,27,75,.16);
  transition:.25s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);
  background:#132a72 !important;
}
/* ========================= */
/* LISTOYA SHOWCASE */
/* ========================= */

.listoya-showcase{
  padding:90px 60px;
  background:
  linear-gradient(180deg,#f7f8fb 0%, #ffffff 100%);
}

.listoya-card{
  max-width:1200px;
  margin:0 auto;

  background:#ffffff;
  border:1px solid rgba(13,27,75,.08);

  display:grid;
  grid-template-columns:320px 1fr;

  align-items:center;
  gap:60px;

  padding:50px;

  text-decoration:none;

  transition:.35s ease;

  box-shadow:
  0 20px 50px rgba(13,27,75,.06);
}

.listoya-card:hover{
  transform:translateY(-6px);
  box-shadow:
  0 35px 70px rgba(13,27,75,.12);
}

.listoya-label{
  font-size:12px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#00bfff;
  margin-bottom:18px;
}

.listoya-logo{
  width:100%;
  max-width:280px;
  display:block;
}

.listoya-title{
  font-family:'Bebas Neue', sans-serif;
  font-size:56px;
  line-height:.95;
  color:#07164a;
  margin-bottom:22px;
}

.listoya-desc{
  font-size:20px;
  line-height:1.8;
  color:#333;
  max-width:700px;
}

.listoya-button{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#07164a;
  color:#fff;

  padding:16px 28px;

  font-weight:700;

  transition:.25s ease;
}

.listoya-card:hover .listoya-button{
  background:#00bfff;
}

@media(max-width:900px){

  .listoya-card{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .listoya-logo{
    margin:0 auto;
  }

  .listoya-title{
    font-size:42px;
  }

  .listoya-desc{
    font-size:18px;
  }

}
/* ========================= */
/* QR MENUS SERVICE */
/* ========================= */

.qr-service-card{
  grid-column: 1 / -1;

  display:flex;
  flex-direction:column;
  align-items:center;

  text-align:center;

  gap:28px;

  padding-top:40px;
}

.qr-service-copy{
  max-width:760px;

  display:flex;
  flex-direction:column;
  align-items:center;
}

.qr-demo-wrapper{
  width:100%;
  max-width:1320px;

  display:flex;
  flex-direction:column;

  gap:18px;
}

.qr-demo-text h3{
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.qr-demo-text p{
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 760px;
}

.qr-demo-badge{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(210,255,0,0.25);
  color: #d7ff2f;
  font-size: 12px;
  letter-spacing: 2px;
  margin: 18px 0 18px;
}

.qr-demo-frame{
  width: 100%;
  height: 650px;
  border-radius: 30px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}

.qr-demo-iframe{
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

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

  .qr-service-card{
    grid-template-columns: 1fr;
  }

  .qr-demo-wrapper{
    width: 100%;
  }

  .qr-demo-frame{
  width: calc(100% + 54px);
  margin-left: -27px;

  height: 760px;

  border-radius: 34px;
  overflow: hidden;

  background: #111827;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
  .qr-demo-iframe{
    width: 100%;
    height: 100%;
    border: 0;
  }

}
.qr-service-copy .mini-list{
  list-style:none;
  padding:0;
  margin:22px 0;

  display:flex;
  flex-direction:column;
  gap:10px;

  align-items:center;
}

.qr-service-copy .mini-list li{
  display:flex;
  align-items:center;
  gap:10px;
}

.qr-service-copy .mini-list li::before{
  content:"✦";
  color:#d7ff2f;
}
/* ========================= */
/* QR FEATURE GRID */
/* ========================= */

.qr-feature-grid{
  width:100%;

  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));

  gap:18px;

  margin:34px 0;
}

.qr-feature-card{
  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:22px;

  padding:26px 20px;

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

  text-align:center;

  gap:12px;

  backdrop-filter:blur(10px);
}

.qr-feature-card span{
  font-size:28px;
}

.qr-feature-card h4{
  color:#fff;
  font-size:18px;
  font-weight:600;
}

@media (max-width:768px){

  .qr-feature-grid{
    grid-template-columns:1fr;
  }

}
.qr-premium-strip{
  position:relative;
  overflow:hidden;
  padding:34px 28px;
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(210,255,0,.14), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 24px 70px rgba(0,0,0,.34);
}

.qr-premium-strip::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform:translateX(-100%);
  animation:qrShine 5s infinite;
}

.qr-strip-kicker{
  position:relative;
  z-index:1;
  display:inline-flex;
  margin-bottom:12px;
  padding:7px 13px;
  border-radius:999px;
  color:#d7ff2f;
  border:1px solid rgba(210,255,0,.25);
  font-size:11px;
  letter-spacing:2px;
  font-weight:800;
}

.qr-premium-strip h3,
.qr-premium-strip p{
  position:relative;
  z-index:1;
}

@keyframes qrShine{
  0%{transform:translateX(-100%);}
  45%,100%{transform:translateX(100%);}
}
.qr-premium-strip p{
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.nav-brand-wrap{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.nav-mini-text{
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(10,20,60,0.55);
  margin-top:4px;
  font-weight:700;
}
.nav-plus{
  color:#c9a227;
  margin:0 2px;
}