/* ==========================================================================
   LigueZap — Design System "Aurora HUD"
   Estética: futurista, glass + neon, aurora animada, HUD monoespaçado
   ========================================================================== */

@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

:root {
  --bg: #04060a;
  --bg-2: #080c12;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.18);
  --fg: #eef4f7;
  --muted: #9aa7b2;
  --muted-2: #69747f;
  --lime: #ccff3d;
  --lime-2: #9be30a;
  --cyan: #43e6ff;
  --violet: #8b5cff;
  --coral: #ff5a36;
  --radius: 20px;
  --radius-sm: 13px;
  --wrap: 1200px;
  --font-display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.85);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.015em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--lime); color: #0a0e03; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--lime); color: #0a0e03; padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }

/* --------------------------- Camadas de fundo --------------------------- */
.bg-aurora, .bg-grid, .bg-scan, .grain { position: fixed; inset: 0; pointer-events: none; }
.bg-aurora { z-index: 0; overflow: hidden; filter: blur(70px); opacity: .55; }
.bg-aurora span { position: absolute; border-radius: 50%; mix-blend-mode: screen; }
.bg-aurora .a1 { width: 46vw; height: 46vw; left: -8vw; top: -12vw; background: radial-gradient(circle, rgba(204,255,61,.55), transparent 65%); animation: drift1 22s var(--ease) infinite alternate; }
.bg-aurora .a2 { width: 40vw; height: 40vw; right: -6vw; top: -6vw; background: radial-gradient(circle, rgba(67,230,255,.42), transparent 65%); animation: drift2 26s var(--ease) infinite alternate; }
.bg-aurora .a3 { width: 42vw; height: 42vw; left: 30vw; top: 30vh; background: radial-gradient(circle, rgba(139,92,255,.4), transparent 65%); animation: drift3 30s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(12vw, 10vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-10vw, 14vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-14vw, -10vh) scale(1.2); } }

.bg-grid { z-index: 0; background-image: linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px); background-size: 62px 62px; mask-image: radial-gradient(ellipse 90% 70% at 50% 8%, #000 25%, transparent 78%); }
.bg-scan { z-index: 1; background: repeating-linear-gradient(180deg, rgba(255,255,255,.022) 0 1px, transparent 1px 4px); opacity: .5; mix-blend-mode: overlay; }
.grain { z-index: 1; opacity: .4; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"); }

/* Spotlight que segue o mouse */
.spotlight { position: fixed; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(560px circle at var(--mx, 50%) var(--my, -20%), rgba(204,255,61,.10), transparent 62%); transition: opacity .4s; }

/* Barra de progresso de scroll */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--lime), var(--cyan)); box-shadow: 0 0 14px rgba(204,255,61,.9); }

/* ------------------------------- Botões ------------------------------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--fg); --btn-bd: var(--line-2);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); transition: left .6s var(--ease); }
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { --btn-bg: var(--lime); --btn-fg: #0a0e03; --btn-bd: var(--lime); box-shadow: 0 14px 44px -14px rgba(204,255,61,.75); }
.btn-primary:hover { --btn-bg: #dbff70; box-shadow: 0 20px 60px -14px rgba(204,255,61,.95); }
.btn-outline:hover { --btn-bg: var(--surface-2); border-color: var(--lime); }
.btn-ghost { --btn-bd: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--fg); background: var(--surface); }
.btn-lg { padding: 15px 27px; font-size: 16px; }
.btn-block { width: 100%; }

/* ------------------------------- Header ------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px); background: linear-gradient(180deg, rgba(4,6,10,.92), rgba(4,6,10,.5)); border-bottom: 1px solid transparent; transition: border-color .3s; }
.site-header.scrolled { border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand-accent { color: var(--lime); }
.nav { display: flex; gap: 26px; font-size: 15px; color: var(--muted); }
.nav a { position: relative; padding: 4px 0; transition: color .2s; }
.nav a:hover { color: var(--fg); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--lime); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* -------------------------------- Hero -------------------------------- */
.hero { position: relative; z-index: 2; padding: 78px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 58px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(204,255,61,.18); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(204,255,61,0); } }

h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); letter-spacing: -0.035em; }
.hl { position: relative; color: var(--lime); text-shadow: 0 0 34px rgba(204,255,61,.5); }
.lead { margin-top: 24px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.trust li { position: relative; padding-left: 20px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em; }
.trust li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(45deg); width: 7px; height: 7px; background: var(--lime); border-radius: 1px; box-shadow: 0 0 10px var(--lime); }

/* Holograma / núcleo */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.core { position: absolute; width: min(520px, 92%); aspect-ratio: 1; display: grid; place-items: center; z-index: 1; }
.core .ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; border: 1px solid rgba(204,255,61,.22); box-shadow: inset 0 0 60px rgba(204,255,61,.08); }
.core .ring:nth-child(1) { width: 100%; height: 100%; border-style: dashed; animation: spin 46s linear infinite; }
.core .ring:nth-child(2) { width: 80%; height: 80%; border-color: rgba(67,230,255,.28); animation: spin 34s linear infinite reverse; }
.core .ring:nth-child(3) { width: 60%; height: 60%; border-color: rgba(139,92,255,.32); border-style: dotted; animation: spin 26s linear infinite; }
.core .ring span { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.core .ring:nth-child(2) span { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.core .ring:nth-child(3) span { background: var(--violet); box-shadow: 0 0 16px var(--violet); }
.core .orb { width: 26%; height: 26%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #eaffc0, var(--lime) 45%, rgba(204,255,61,.05) 70%); filter: blur(2px); box-shadow: 0 0 90px rgba(204,255,61,.6); animation: breathe 5s var(--ease) infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.08); filter: blur(3px); } }

/* Card de chamada */
.call-card { position: relative; z-index: 3; width: 100%; max-width: 420px; border-radius: 24px; padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.call-card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: conic-gradient(from var(--angle), transparent 0 70%, var(--lime), transparent 85% 100%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: turn 5s linear infinite; pointer-events: none; }
@keyframes turn { to { --angle: 360deg; } }
.call-top { display: flex; align-items: center; gap: 12px; }
.call-avatar { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(204,255,61,.14); color: var(--lime); box-shadow: inset 0 0 20px rgba(204,255,61,.2); }
.call-top strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.call-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }
.live { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: live 1.6s infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 9px rgba(255,90,54,0); } 0% { box-shadow: 0 0 0 0 rgba(255,90,54,.55); } }

.wave { display: flex; align-items: center; gap: 3px; height: 54px; margin: 18px 0; }
.wave span { flex: 1; height: 14%; border-radius: 3px; background: linear-gradient(180deg, var(--lime), rgba(204,255,61,.3)); animation: wave 1.1s var(--ease) infinite; box-shadow: 0 0 12px rgba(204,255,61,.4); }
.wave span:nth-child(3n) { animation-delay: .12s; } .wave span:nth-child(4n) { animation-delay: .24s; }
.wave span:nth-child(5n) { animation-delay: .36s; } .wave span:nth-child(7n) { animation-delay: .48s; }
@keyframes wave { 0%,100% { height: 14%; opacity: .5; } 50% { height: 100%; opacity: 1; } }

.transcript { display: grid; gap: 8px; }
.transcript p { font-size: 14px; padding: 10px 13px; border-radius: 12px; border: 1px solid var(--line); max-width: 92%; }
.t-agent { background: var(--surface-2); }
.t-user { background: rgba(204,255,61,.1); border-color: rgba(204,255,61,.3) !important; justify-self: end; text-align: right; }
.call-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.tag { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.tag.ok { background: rgba(204,255,61,.14); border-color: rgba(204,255,61,.4); color: var(--lime); }

/* ------------------------------ Marquee ------------------------------- */
.marquee { position: relative; z-index: 2; border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: rgba(255,255,255,.015); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 54px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 54px; }
.marquee-track span::after { content: "◆"; color: var(--lime); font-size: 9px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------- Sections ------------------------------ */
.band { position: relative; z-index: 2; margin: 50px 0; }
.band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); backdrop-filter: blur(8px); }
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem,3vw,2.7rem); color: var(--lime); text-shadow: 0 0 30px rgba(204,255,61,.4); }
.stat span { font-size: 13px; color: var(--muted); }

.section { position: relative; z-index: 2; padding: 78px 0; }
.section.alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.024), transparent); }
.section-head { max-width: 680px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); }
.narrow { max-width: 800px; }

.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; background: var(--surface); backdrop-filter: blur(8px); overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease); }
.card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 220px at 100% 0%, rgba(204,255,61,.1), transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.card:hover::after { opacity: 1; }
.card-wide { grid-column: span 2; }
.card-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(204,255,61,.12); color: var(--lime); margin-bottom: 18px; box-shadow: inset 0 0 24px rgba(204,255,61,.18); }
.card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.steps li { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--surface); backdrop-filter: blur(8px); }
.step-n { font-family: var(--font-mono); font-weight: 700; font-size: 34px; color: transparent; -webkit-text-stroke: 1.3px var(--lime); display: block; margin-bottom: 18px; }
.steps h3 { font-size: 1.2rem; margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 15px; }

.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: var(--surface); backdrop-filter: blur(8px); transition: transform .4s var(--ease), border-color .4s var(--ease); }
.price:hover { transform: translateY(-5px); border-color: var(--line-2); }
.price.featured { border-color: rgba(204,255,61,.5); background: linear-gradient(180deg, rgba(204,255,61,.1), rgba(255,255,255,.02)); box-shadow: 0 40px 90px -46px rgba(204,255,61,.7); }
.price.featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: conic-gradient(from var(--angle), transparent 0 68%, var(--lime), transparent 84% 100%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: turn 6s linear infinite; pointer-events: none; }
.price h3 { font-size: 1.3rem; }
.badge { position: absolute; top: -12px; left: 30px; background: var(--lime); color: #0a0e03; font-family: var(--font-mono); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.price-value { font-family: var(--font-display); font-weight: 800; font-size: 3rem; margin: 18px 0 4px; display: flex; align-items: baseline; gap: 3px; }
.price-value span { font-size: 1.3rem; color: var(--muted); } .price-value small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price ul { display: grid; gap: 11px; margin-bottom: 26px; }
.price li { position: relative; padding-left: 26px; font-size: 15px; color: var(--muted); }
.price li::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 8px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 4px 22px; transition: border-color .3s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--lime); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding: 0 0 20px; font-size: 15px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.7rem,3.2vw,2.5rem); margin-bottom: 14px; }
.contact-copy > p { color: var(--muted); margin-bottom: 26px; }
.contact-list { display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; }
.contact-list svg { color: var(--lime); flex: none; }
.contact-list a:hover { color: var(--lime); }

.contact-form { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--surface); backdrop-filter: blur(10px); display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 13px; font-weight: 600; color: var(--muted); font-family: var(--font-mono); letter-spacing: .02em; }
input, textarea { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg); background: rgba(0,0,0,.32); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .25s, box-shadow .25s; }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(204,255,61,.16); }
textarea { resize: vertical; min-height: 112px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; color: var(--muted); font-size: 13px; font-family: var(--font-body); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--lime); flex: none; }
.consent a { color: var(--lime); text-decoration: underline; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.ok { color: var(--lime); } .form-status.err { color: var(--coral); }
.btn[disabled] { opacity: .6; cursor: progress; }

.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); margin-top: 40px; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; font-weight: 700; }
.footer-grid nav { display: grid; gap: 9px; align-content: start; }
.footer-grid a { color: var(--muted); font-size: 14.5px; } .footer-grid a:hover { color: var(--lime); }
.muted { color: var(--muted-2); font-size: 14px; margin-top: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 13px; }

.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 120; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #04240f; box-shadow: 0 18px 44px -12px rgba(37,211,102,.85); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.09) translateY(-2px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }

/* Tilt */
.tilt { transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transform-style: preserve-3d; will-change: transform; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { min-height: 420px; }
  .bento { grid-template-columns: 1fr 1fr; } .card-wide { grid-column: span 2; }
  .steps, .pricing { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .bento { grid-template-columns: 1fr; } .card-wide { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero { padding-top: 48px; }
}

/* ------------------------------ Páginas legais ------------------------------ */
.legal { position: relative; z-index: 2; padding: 56px 0 40px; }
.legal .wrap { max-width: 820px; }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 26px; color: var(--muted); font-family: var(--font-mono); font-size: 13px; }
.back-link:hover { color: var(--lime); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal .updated { color: var(--muted-2); font-family: var(--font-mono); font-size: 12.5px; margin-bottom: 34px; }
.legal h2 { font-family: var(--font-display); font-size: 1.25rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--lime); text-decoration: underline; }
.legal strong { color: var(--fg); }

/* Pricing com 2 planos (centralizado) */
.pricing.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
@media (max-width: 1000px) { .pricing.cols-2 { grid-template-columns: 1fr; max-width: none; } }
