@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #060608;
  --surface: #0d0d12;
  --surface2: #13131a;
  --border: #1e1e2a;
  --accent: #c8f03e;
  --accent2: #3ef0c8;
  --text: #f0f0f5;
  --muted: #6b6b7e;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
.lucide { width: 1em; height: 1em; stroke-width: 2px; display: inline-block; vertical-align: text-bottom; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}

/* NOISE */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 20px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(6,6,8,.75);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(6,6,8,.97); }
.logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; letter-spacing: -.5px; text-decoration: none; color: var(--text); }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .87rem; font-weight: 500; letter-spacing: .3px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ''; display: block; height: 2px; background: var(--accent); margin-top: 2px; border-radius: 2px; }
.nav-cta { background: var(--accent); color: #000; font-family: var(--font-head); font-weight: 700; font-size: .82rem; padding: 10px 22px; border-radius: 100px; text-decoration: none; letter-spacing: .4px; transition: opacity .2s, transform .2s; }
.nav-cta:hover { opacity: .85; transform: translateY(-1px); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; top: 64px; background: rgba(6,6,8,.98); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--text); text-decoration: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: #000; font-family: var(--font-head); font-weight: 700; font-size: .9rem; padding: 15px 36px; border-radius: 100px; text-decoration: none; letter-spacing: .4px; display: inline-block; transition: transform .2s, box-shadow .2s; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,240,62,.3); }
.btn-ghost { color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 15px 28px; border-radius: 100px; text-decoration: none; border: 1px solid var(--border); display: inline-block; transition: border-color .2s, color .2s; background: transparent; cursor: pointer; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTION COMMONS ── */
section { padding: 100px 6vw; position: relative; }
.section-tag { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -1px; line-height: 1.05; }
.section-title em { font-style: normal; color: var(--accent); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { min-height: 50vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 140px 6vw 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 60px 60px; opacity: .3; }
.page-hero-glow { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle,rgba(200,240,62,.08) 0%,transparent 70%); pointer-events: none; }
.page-hero-label { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; position: relative; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 800; letter-spacing: -2px; line-height: .95; position: relative; max-width: 800px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { position: relative; margin-top: 24px; font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.8; }

/* ── MARQUEE ── */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 16px 0; background: var(--surface); }
.marquee-track { display: flex; gap: 56px; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item { font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 12px; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 60px 6vw 40px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p { margin-top: 14px; font-size: .85rem; color: var(--muted); max-width: 260px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-head); font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 32px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: var(--muted); text-decoration: none; transition: border-color .2s, color .2s, background .2s; }
.social-btn:hover { border-color: var(--accent); color: #000; background: var(--accent); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(37,211,102,.4); text-decoration: none; transition: transform .2s, box-shadow .2s; animation: wa-pulse 3s ease infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
@keyframes wa-pulse { 0%,100%{box-shadow:0 8px 32px rgba(37,211,102,.4);} 50%{box-shadow:0 8px 48px rgba(37,211,102,.7);} }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 5vw; }
}
