:root {
  --bg: #03101f;
  --bg-2: #07192f;
  --bg-3: #0a2344;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: #b9c6da;
  --gold: #f3c54a;
  --gold-2: #ffe18d;
  --blue: #39a8ff;
  --green: #23d485;
  --red: #ff6d6d;
  --shadow: 0 22px 60px rgba(0,0,0,0.32);
  --radius: 24px;
  --max: 1220px;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --menu-width: 340px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(57,168,255,0.12), transparent 18%),
    radial-gradient(circle at 90% 10%, rgba(243,197,74,0.08), transparent 20%),
    radial-gradient(circle at 85% 60%, rgba(35,212,133,0.08), transparent 20%),
    linear-gradient(180deg, #020913 0%, #03101f 40%, #07192f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar { background: #010913; border-bottom: 1px solid rgba(255,255,255,0.06); color: #d4ddeb; font-size: 0.9rem; }
.topbar .inner { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.topbar .contact-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.topbar .contact-links a:hover { color: #ffffff; }
header { position: sticky; top: 0; z-index: 999; backdrop-filter: blur(12px); background: rgba(3,16,31,0.84); border-bottom: 1px solid var(--line); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-wrap { display: flex; flex-direction: column; gap: 2px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.9rem; font-weight: 800; letter-spacing: -1px; white-space: nowrap; }
.logo .gold { color: var(--gold); }
.logo .white { color: var(--text); font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { width: 52px; height: 52px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s ease; position: relative; }
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span, .hamburger::before, .hamburger::after { content: ""; position: absolute; width: 22px; height: 2px; background: #ffffff; border-radius: 999px; transition: 0.2s ease; }
.hamburger span { transform: translateY(0); }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(7px); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 14px; font-weight: 700; border: 1px solid transparent; cursor: pointer; transition: 0.2s ease; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--gold), #ffd866); color: #07111f; box-shadow: 0 14px 30px rgba(243,197,74,0.24); }
.btn-primary:hover { transform: translateY(-1px); background: linear-gradient(135deg, #ffd25a, #ffe28d); }
.btn-secondary { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.16); }
.btn-secondary:hover { background: rgba(255,255,255,0.06); }
.side-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; visibility: hidden; transition: 0.25s ease; z-index: 1200; }
.side-menu-overlay.active { opacity: 1; visibility: visible; }
.side-menu { position: fixed; top: 0; left: 0; width: min(var(--menu-width), 90vw); height: 100vh; background: linear-gradient(180deg, rgba(10,35,68,0.98), rgba(3,16,31,0.98)); border-right: 1px solid rgba(255,255,255,0.1); box-shadow: 20px 0 60px rgba(0,0,0,0.35); transform: translateX(-100%); transition: transform 0.28s ease; z-index: 1300; display: flex; flex-direction: column; padding: 22px; overflow-y: auto; }
.side-menu.active { transform: translateX(0); }
.side-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 28px; }
.side-menu-close { width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1; }
.side-menu-close:hover { background: rgba(255,255,255,0.08); }
.side-menu-links { display: grid; gap: 8px; margin-bottom: 28px; }
.side-menu-links a { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); color: #fff; font-weight: 600; transition: 0.2s ease; }
.side-menu-links a:hover { background: rgba(255,255,255,0.09); }
.side-menu-contact { margin-top: auto; display: grid; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.side-contact-card { padding: 16px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.side-contact-card strong { display: block; margin-bottom: 6px; color: #fff; }
.side-contact-card a { color: var(--muted); word-break: break-word; }
.side-contact-card a:hover { color: #fff; }
.hero { padding: 92px 0 82px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -200px; top: -120px; border-radius: 50%; border: 1px solid rgba(57,168,255,0.16); box-shadow: inset 0 0 120px rgba(57,168,255,0.06); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: 40px; top: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(57,168,255,0.12), transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 34px; align-items: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(243,197,74,0.12); border: 1px solid rgba(243,197,74,0.24); color: #ffe18e; padding: 10px 16px; border-radius: 999px; font-size: 0.92rem; font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.7rem, 5.1vw, 4.9rem); line-height: 1.02; letter-spacing: -2px; margin-bottom: 18px; max-width: 950px; }
.hero h1 .gold { color: var(--gold); }
.hero p.lead { color: var(--muted); font-size: 1.1rem; max-width: 760px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.point { padding: 18px; border-radius: 18px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.point strong { display: block; font-size: 1rem; margin-bottom: 5px; color: var(--text); }
.point span { color: var(--muted); font-size: 0.94rem; }
.hero-card { background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05)); border: 1px solid var(--line); border-radius: 30px; padding: 32px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: -80px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(35,212,133,0.18), transparent 66%); }
.card-badge { display: inline-flex; padding: 9px 14px; border-radius: 999px; background: rgba(35,212,133,0.12); border: 1px solid rgba(35,212,133,0.2); color: #95f1c0; font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.hero-card h3 { font-size: 1.95rem; line-height: 1.08; margin-bottom: 10px; }
.hero-card p { color: var(--muted); margin-bottom: 18px; }
.price { font-size: 3rem; line-height: 1; font-weight: 800; margin-bottom: 8px; }
.price-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.list { display: grid; gap: 12px; margin-bottom: 24px; }
.list-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.dot { width: 10px; height: 10px; min-width: 10px; border-radius: 50%; background: var(--gold); margin-top: 8px; box-shadow: 0 0 16px rgba(243,197,74,0.8); }
section { padding: 82px 0; }
.section-heading { text-align: center; max-width: 920px; margin: 0 auto 40px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -1px; margin-bottom: 14px; }
.section-heading p { color: var(--muted); font-size: 1.05rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); height: 100%; }
.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 16px; }
.card ul { list-style: none; display: grid; gap: 10px; }
.card li { position: relative; padding-left: 22px; color: var(--muted); }
.card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px rgba(57,168,255,0.8); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.soft-panel { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.soft-panel h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin-bottom: 14px; letter-spacing: -1px; }
.soft-panel p { color: var(--muted); margin-bottom: 20px; }
.stack { display: grid; gap: 14px; margin-top: 18px; }
.stack div { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); color: var(--muted); }
.stack strong { display: block; color: var(--text); margin-bottom: 4px; }
.notice { padding: 26px; border-radius: 24px; background: linear-gradient(135deg, rgba(255,109,109,0.10), rgba(57,168,255,0.08)); border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow); }
.notice h3 { font-size: 1.45rem; margin-bottom: 10px; }
.notice p { color: var(--muted); margin-bottom: 14px; }
.demo-box { border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: var(--panel); box-shadow: var(--shadow); }
.demo-video { position: relative; padding-top: 56.25%; background: #000; }
.demo-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-content { padding: 28px; }
.shot-wrap { border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,0.03); box-shadow: var(--shadow); }
.shot-wrap img { width: 100%; height: auto; display: block; }
.shot-caption { padding: 20px 24px 24px; color: var(--muted); }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.pill { padding: 10px 14px; border-radius: 999px; background: rgba(57,168,255,0.10); border: 1px solid rgba(57,168,255,0.16); color: #d7ebff; font-size: 0.92rem; font-weight: 600; }
.pricing { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.price-card { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); height: 100%; }
.price-card.featured { transform: translateY(-6px); border: 1px solid rgba(243,197,74,0.35); background: linear-gradient(180deg, rgba(243,197,74,0.08), rgba(255,255,255,0.05)); }
.popular { position: absolute; top: 16px; right: 16px; background: var(--gold); color: #07111f; font-size: 0.8rem; font-weight: 800; padding: 8px 10px; border-radius: 999px; }
.price-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.amount { font-size: 2.7rem; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.small { color: var(--muted); margin-bottom: 20px; }
.price-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.price-card li { position: relative; padding-left: 22px; color: var(--muted); }
.price-card li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(35,212,133,0.8); }
.steps { display: grid; gap: 18px; counter-reset: step; }
.step { position: relative; padding: 22px 22px 22px 80px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 22px; top: 22px; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #07111f; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h3 { margin-bottom: 6px; font-size: 1.08rem; }
.step p { color: var(--muted); }
.accordion { max-width: 980px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.faq-question { width: 100%; background: transparent; color: var(--text); border: 0; text-align: left; padding: 22px 24px; font-size: 1.02rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon { font-size: 1.4rem; line-height: 1; color: var(--gold); transition: transform 0.2s ease; min-width: 18px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-answer-inner { padding: 0 24px 24px; color: var(--muted); }
.cta { padding: 92px 0; }
.cta-box { padding: 52px 28px; text-align: center; border-radius: 30px; background: radial-gradient(circle at top, rgba(57,168,255,0.12), transparent 30%), linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.cta-box h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.06; letter-spacing: -1px; margin-bottom: 14px; }
.cta-box p { max-width: 820px; margin: 0 auto 24px; color: var(--muted); font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.contact-strip { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; color: var(--muted); font-size: 0.98rem; }
.contact-strip a:hover { color: var(--text); }
.disclaimer { max-width: 920px; margin: 20px auto 0; color: #90a2bd; font-size: 0.84rem; line-height: 1.5; }
footer { border-top: 1px solid var(--line); background: #020914; padding: 28px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-row p, .footer-row a { color: var(--muted); font-size: 0.94rem; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 1200; display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); color: #ffffff; padding: 14px 18px; border-radius: 999px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); border: 1px solid rgba(255,255,255,0.12); font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.floating-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(0, 0, 0, 0.4); }
.floating-whatsapp .icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; font-size: 0.95rem; line-height: 1; font-weight: 900; }
@media (max-width: 1100px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .split, .price-grid { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .topbar .inner, .nav, .footer-row { flex-direction: column; align-items: flex-start; }
  .nav-actions { width: 100%; flex-wrap: wrap; }
  .nav-actions .btn, .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero, section, .cta { padding-top: 60px; padding-bottom: 60px; }
  .hero-card, .card, .soft-panel, .price-card, .faq-question, .faq-answer-inner, .cta-box, .demo-content { padding-left: 22px; padding-right: 22px; }
  .hero-card, .card, .soft-panel, .price-card, .cta-box { padding-top: 22px; padding-bottom: 22px; }
  .price { font-size: 2.4rem; }
  .logo { font-size: 1.6rem; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 13px 16px; font-size: 0.92rem; }
}
@media (max-width: 520px) {
  .floating-whatsapp .label { display: none; }
  .floating-whatsapp { width: 58px; height: 58px; padding: 0; justify-content: center; border-radius: 50%; }
  .floating-whatsapp .icon { width: 28px; height: 28px; font-size: 1rem; background: transparent; }
}
