@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root{
  --black:#050505;
  --black2:#0d0d0d;
  --card:#141414;
  --yellow:#f5c400;
  --yellow2:#ffd84d;
  --white:#ffffff;
  --muted:#b8b8b8;
  --line:rgba(245,196,0,.25);
  --green:#25D366;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:var(--black);
  color:var(--white);
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,92%);margin:auto}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(5,5,5,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:82px;
}
.brand{display:flex;align-items:center;gap:18px}
.brand img:first-child{height:48px;width:auto}
.brand img:last-child{height:42px;width:auto}
.divider{width:1px;height:42px;background:var(--line)}
.menu{display:flex;gap:26px;font-size:14px;font-weight:700;color:#efefef}
.menu a:hover{color:var(--yellow)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:15px 22px;
  font-weight:900;
  border:1px solid transparent;
  transition:.2s;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--yellow);color:#111;box-shadow:0 16px 38px rgba(245,196,0,.22)}
.btn-secondary{border-color:rgba(255,255,255,.28);color:#fff}
.btn-outline{border-color:var(--yellow);color:#fff}
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(245,196,0,.22), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(245,196,0,.10), transparent 28%),
    linear-gradient(135deg,#050505 0%, #080808 48%, #151100 100%);
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(245,196,0,.035) 1px, transparent 1px),linear-gradient(90deg, rgba(245,196,0,.035) 1px, transparent 1px);
  background-size:46px 46px;
  opacity:.55;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:54px;
  align-items:center;
  min-height:760px;
  padding:80px 0;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:2.2px;
  font-weight:900;
  font-size:13px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(46px,6vw,82px);
  line-height:.94;
  letter-spacing:-3.4px;
  margin-bottom:24px;
  text-transform:uppercase;
}
h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.04;
  letter-spacing:-1.8px;
  margin-bottom:18px;
}
.lead,.section-lead{
  color:#e8e8e8;
  font-size:20px;
  line-height:1.65;
  max-width:650px;
}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin:34px 0 28px}
.hero-pills{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
.hero-pills span{
  border:1px solid rgba(245,196,0,.34);
  color:#fff;
  border-radius:999px;
  padding:10px 13px;
  font-size:13px;
  font-weight:800;
}
.secure-card{
  max-width:520px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.055);
  border-radius:18px;
  padding:18px 20px;
}
.secure-card strong{display:block;margin-bottom:6px}
.secure-card span{color:var(--muted)}
.hero-visual{position:relative;min-height:560px;display:grid;place-items:center}
.mascot{
  width:min(560px,100%);
  border-radius:34px;
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}
.bubble{
  position:absolute;
  left:0;
  top:80px;
  width:260px;
  background:rgba(10,10,10,.85);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 22px 52px rgba(0,0,0,.35);
}
.bubble strong{display:block;color:#fff;margin-bottom:8px}
.bubble span{color:#e5e5e5}
.section{padding:88px 0}
.light{background:#fff;color:#111}
.light .section-lead{color:#444}
.center{text-align:center}
.center .section-lead{margin:0 auto}
.dark{
  background:linear-gradient(180deg,#070707 0%,#101010 100%);
  color:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.split{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:end}
.cards{display:grid;gap:22px;margin-top:42px}
.three{grid-template-columns:repeat(3,1fr)}
.six{grid-template-columns:repeat(6,1fr)}
.card{
  background:#fff;
  border:1px solid #eee;
  border-radius:28px;
  padding:30px;
  box-shadow:0 18px 44px rgba(0,0,0,.08);
  text-align:left;
}
.card h3{font-size:23px;margin-bottom:10px}
.card p{color:#555;line-height:1.6;margin:0}
.icon{
  width:54px;height:54px;border-radius:18px;background:#111;color:var(--yellow);
  display:grid;place-items:center;font-size:28px;margin-bottom:20px;
}
.mini-card{
  border:1px solid rgba(245,196,0,.24);
  background:rgba(255,255,255,.045);
  border-radius:24px;
  padding:22px 18px;
  text-align:center;
}
.mini-card span{display:block;font-size:30px;margin-bottom:15px}
.mini-card strong{display:block;margin-bottom:8px}
.mini-card small{color:var(--muted);line-height:1.4}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:42px;
}
.step{
  border:1px solid #eee;
  background:#fff;
  border-radius:28px;
  padding:30px;
  box-shadow:0 16px 40px rgba(0,0,0,.06);
}
.step span{
  width:48px;height:48px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--yellow);
  color:#111;
  font-weight:900;
  margin:0 auto 18px;
}
.step p{color:#555;line-height:1.55;margin:0}
.lgpd-box{
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:38px;
  align-items:center;
}
.lgpd-card{
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
}
.lgpd-card strong{font-size:26px;color:var(--yellow)}
.lgpd-card p{color:#ddd;line-height:1.65;margin:16px 0 22px}
.legal-links{display:flex;gap:12px;flex-wrap:wrap}
.legal-links a{
  border:1px solid var(--line);
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
}
.final-cta{
  background:
    radial-gradient(circle at 50% 0%, rgba(245,196,0,.18), transparent 35%),
    #090909;
}
.footer{
  background:#020202;
  border-top:1px solid rgba(255,255,255,.08);
  padding:54px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:40px;
}
.footer-brand{display:flex;gap:14px;align-items:center;margin-bottom:18px}
.footer-brand img:first-child{height:42px}
.footer-brand img:last-child{height:38px}
.footer p,.footer a{display:block;color:#bdbdbd;line-height:1.7;margin:0 0 8px}
.footer h4{margin:0 0 16px;color:#fff}
.copyright{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#888;
  font-size:13px;
}
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:40;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.whatsapp-float span{
  width:70px;height:70px;border-radius:50%;
  background:var(--green);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:34px;
  box-shadow:0 16px 40px rgba(37,211,102,.36);
  border:4px solid #fff;
}
.whatsapp-float small{
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-weight:800;
  font-size:11px;
}
.legal-main{
  background:#fff;
  color:#111;
  min-height:70vh;
  padding:70px 0;
}
.legal-content{
  max-width:900px;
  margin:auto;
}
.legal-content h1{font-size:44px;letter-spacing:-1px}
.legal-content h2{font-size:28px;margin-top:34px}
.legal-content p,.legal-content li{color:#444;line-height:1.75}
@media(max-width:980px){
  .menu{display:none}
  .hero-grid,.split,.lgpd-box,.footer-grid{grid-template-columns:1fr}
  .hero-grid{padding:52px 0;min-height:auto}
  .three,.six,.steps{grid-template-columns:1fr}
  .brand img:first-child{height:38px}
  .brand img:last-child{height:34px}
  .bubble{position:relative;top:auto;left:auto;margin-top:18px}
  h1{letter-spacing:-2px}
}
@media(max-width:560px){
  .btn-outline{display:none}
  .brand{gap:10px}
  .brand img:last-child{display:none}
  .divider{display:none}
  .hero-actions{display:grid}
  .whatsapp-float span{width:62px;height:62px}
}
