:root {
  --bg: #0A0E1A;
  --bg-alt: #0E1422;
  --surface: #151B2E;
  --surface-2: #1E2540;
  --border: #2A3354;
  --text: #F8FAFC;
  --text-body: #CBD5E1;
  --text-muted: #94A3B8;
  --pink: #EC4899;
  --orange: #F97316;
  --purple: #A855F7;
  --success: #10B981;
  --danger: #EF4444;
  --max-w: 1180px;
  --radius: 14px;
  --grad: linear-gradient(135deg, #F97316 0%, #EC4899 50%, #A855F7 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 96px 24px; position: relative; }
.container { max-width: var(--max-w); margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 24px; }
h3 { font-size: 18px; font-weight: 700; }
p  { margin: 0 0 16px; color: var(--text-body); }
.muted { color: var(--text-muted); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------- NAV --------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 14, 26, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 32px; height: 32px; }
.brand-text { font-size: 18px; }
.brand-text .sub { color: var(--pink); font-weight: 500; }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
  color: var(--text-body); font-size: 14px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s, opacity .12s, border-color .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 0.95; }
.btn-primary { background: var(--grad); color: white; }
.btn-secondary {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--pink); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.hamburger {
  display: none;
  background: transparent; border: 0; color: var(--text);
  width: 36px; height: 36px; cursor: pointer;
}

/* --------- HERO --------- */
.hero {
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background-image: url('assets/top.png');
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10, 14, 26, 0.96) 0%, rgba(10, 14, 26, 0.85) 30%, rgba(10, 14, 26, 0.5) 55%, rgba(10, 14, 26, 0.35) 100%),
    linear-gradient(to bottom, rgba(10, 14, 26, 0.5) 0%, transparent 25%, transparent 70%, rgba(10, 14, 26, 0.9) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.hero-composite {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-composite img {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-composite { display: none; }
}
@media (max-width: 720px) {
  .hero { padding: 60px 20px 90px; min-height: 540px; background-position: 70% center; }
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero p.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

/* App store badges */
.app-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 8px;
}
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0F172A;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  transition: transform .15s, border-color .15s;
}
.app-badge:hover { transform: translateY(-1px); border-color: var(--pink); }
.app-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.app-badge .lines { display: flex; flex-direction: column; line-height: 1.1; }
.app-badge .lines small { font-size: 10px; color: var(--text-muted); }
.app-badge .lines strong { font-size: 14px; font-weight: 700; }

/* Apresentação image composite (laptop + phone) */
.apresent-image {
  position: relative;
  margin-top: 40px;
  display: flex; align-items: center; justify-content: center;
}
.apresent-image .a-laptop {
  width: 100%;
  max-width: 720px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}
.apresent-image .a-phone {
  position: absolute;
  right: 6%;
  bottom: -8%;
  width: 16%;
  max-width: 180px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.5));
}
@media (max-width: 720px) {
  .apresent-image .a-phone { right: 4%; bottom: -10%; width: 22%; }
}

/* --------- VIDEO --------- */
.video-section { background: var(--bg-alt); }
.video-wrap {
  max-width: 920px;
  margin: 32px auto 0;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.video-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* --------- DOR --------- */
.dor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.dor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.dor-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--pink);
}
.dor-card .x {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  margin-bottom: 16px;
}
.dor-card h3 { font-size: 16px; margin-bottom: 8px; }
.dor-card p { font-size: 14px; margin: 0; }

/* --------- DADO STAT --------- */
.dado-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.big-number {
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
}
.dado-stat .label-small { font-size: 18px; color: var(--text-muted); margin-bottom: 8px; }
.dado-stat h3 { font-size: 24px; margin-bottom: 12px; }
.dado-stat p { font-size: 16px; }
.dado-stat cite { display: block; font-size: 12px; color: var(--text-muted); margin-top: 8px; font-style: italic; }
.dado-punchline {
  margin-top: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
  font-style: italic;
  color: var(--text);
}

/* --------- APRESENTAÇÃO --------- */
.apresent { text-align: center; }
.apresent-brand {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.apresent-brand img { width: 56px; height: 56px; }
.apresent-brand .word { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.apresent-brand .word .pink { color: var(--pink); font-weight: 500; }
.apresent p.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 720px;
  margin: 0 auto 32px;
}

/* --------- COMO FUNCIONA --------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.flow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.flow-num { font-size: 13px; color: var(--pink); font-weight: 700; margin-bottom: 8px; }
.flow-card h3 { font-size: 22px; margin-bottom: 16px; }
.flow-thumb {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  padding: 8px;
}
.flow-thumb img { max-height: 100%; width: auto; max-width: 100%; }
.flow-thumb.geo img { max-width: 80%; }
.flow-card p { font-size: 13px; margin: auto 0 0; color: var(--text-body); }

/* --------- FERRAMENTAS (15) --------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tool {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: flex; flex-direction: column;
  transition: border-color .15s, transform .15s;
}
.tool:hover { border-color: var(--pink); transform: translateY(-2px); }
.tool .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(236, 72, 153, 0.12);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.tool h3 { font-size: 15px; margin-bottom: 6px; font-weight: 700; }
.tool p { font-size: 13px; margin: 0; color: var(--text-body); }

/* --------- RASTREABILIDADE --------- */
.rastreab { text-align: center; }
.rastreab-image {
  max-width: 920px;
  margin: 32px auto 24px;
}
.rastreab-image img {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.rastreab-chips {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin-top: 16px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.chip.pink   { border-color: var(--pink); }
.chip.orange { border-color: var(--orange); }
.chip.purple { border-color: var(--purple); }

/* --------- CLIENTES (CARROSSEL) --------- */
.clients-section { overflow: hidden; }
.clients-marquee {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}
.clients-marquee:hover .clients-track { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px 22px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-body);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.client-tile:hover { border-color: var(--pink); color: var(--text); }

/* --------- DEPOIMENTOS --------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
}
.quote-mark { color: var(--pink); font-size: 36px; line-height: 0.6; margin-bottom: 12px; font-weight: 700; }
.testimonial blockquote {
  margin: 0 0 20px;
  font-style: italic;
  color: var(--text-body);
  flex: 1;
}
.testimonial .author { font-weight: 700; }
.testimonial .company { font-size: 13px; color: var(--pink); margin-top: 2px; }
.testimonial .tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--surface-2);
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --------- PREÇOS --------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.plan.featured {
  border-color: var(--pink);
  background: var(--surface-2);
  transform: translateY(-8px);
}
.plan .badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 2px;
}
.plan .plan-name {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.plan .plan-range { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.plan .price { font-size: 48px; font-weight: 800; }
.plan .price-unit { color: var(--text-body); font-size: 13px; margin-top: 4px; margin-bottom: 24px; }
.plan ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.plan ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-body);
  display: flex; gap: 10px; align-items: flex-start;
}
.plan ul li svg { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.pricing-extras {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: center;
  font-size: 13px; color: var(--text-body);
}
.pricing-extras span { display: flex; align-items: center; gap: 6px; }
.pricing-extras svg { color: var(--success); }

/* --------- CTA FINAL --------- */
.cta-final {
  background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.06) 40%, transparent);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(120px);
  opacity: 0.25; pointer-events: none;
}
.cta-final::before { background: var(--pink); width: 460px; height: 460px; top: -100px; left: -100px; }
.cta-final::after { background: var(--purple); width: 460px; height: 460px; bottom: -100px; right: -100px; }
.cta-final .content { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-final .grad-text { font-style: italic; }
.cta-final p { font-size: 18px; color: var(--text-body); margin-bottom: 32px; }
.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 40px auto 0;
}
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
  text-align: left;
  transition: border-color .15s, transform .15s;
}
.cta-card:hover { border-color: var(--pink); transform: translateY(-2px); }
.cta-card .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(236, 72, 153, 0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}
.cta-card.whatsapp .icon { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.cta-card .label {
  font-size: 11px; letter-spacing: 2px; color: var(--pink); font-weight: 700;
  text-transform: uppercase;
}
.cta-card .value { font-weight: 600; font-size: 14px; }

/* --------- FOOTER --------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 60px;
  font-size: 13px;
  color: var(--text-muted);
}
footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; }

/* --------- ANIMATIONS --------- */
html.js-ready .reveal:not(.in) {
  opacity: 0;
  transform: translateY(20px);
}
.reveal {
  transition: opacity .6s ease-out, transform .6s ease-out;
}

/* --------- RESPONSIVE --------- */
@media (max-width: 980px) {
  .dor-grid     { grid-template-columns: repeat(2, 1fr); }
  .flow-grid    { grid-template-columns: repeat(2, 1fr); }
  .tools-grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .cta-cards { grid-template-columns: 1fr; }
  .dado-stat { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 16px 24px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open ~ .nav-actions { display: flex; }
  .dor-grid     { grid-template-columns: 1fr; }
  .flow-grid    { grid-template-columns: 1fr; }
  .tools-grid   { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .big-number { font-size: 120px; }
}

/* WhatsApp floating button */
.wpp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
  color: white;
}
.wpp-float:hover { transform: scale(1.05); }

/* --------- WHATSAPP BUTTON --------- */
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #20bd5a; opacity: 1; }
.btn-whatsapp svg { width: 18px; height: 18px; }
.plan .btn-whatsapp { width: 100%; justify-content: center; margin-top: 24px; }

/* --------- CONTACT FORM (CTA section) --------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 44px auto 0;
  text-align: left;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-form .field { margin-bottom: 14px; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .15s;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { outline: none; border-color: var(--pink); }
.form-control.is-valid { border-color: var(--success); }
.form-control.is-invalid { border-color: var(--danger); }
.field-hint { display: block; margin-top: 6px; font-size: 12px; min-height: 14px; }
.field-hint.ok { color: var(--success); }
.field-hint.bad { color: var(--danger); }
.field-hint.muted { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 112px; }
select.form-control {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  text-align: center;
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.quick-contacts { display: flex; flex-direction: column; gap: 14px; }
.quick-contacts .cta-card { margin: 0; }
@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form .field-row { grid-template-columns: 1fr; }
}

/* --------- FAQ PAGE --------- */
.faq-hero { text-align: center; padding-bottom: 8px; }
.faq-hero p.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  max-width: 640px;
  margin: 0 auto;
}
.faq-section { padding-top: 32px; }
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: var(--pink); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.faq-q:hover { color: var(--text); }
.faq-icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--pink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after  { width: 2px; height: 14px; transition: transform .2s, opacity .2s; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

/* --------- FOOTER META (Instagram + privacy, low-key) --------- */
.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-meta a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}
.footer-meta a:hover { color: var(--text); }
@media (max-width: 720px) {
  footer .container { grid-template-columns: 1fr; }
  .footer-meta { justify-content: flex-start; }
}

/* --------- LEGAL / PRIVACY PAGE --------- */
.legal-hero { text-align: center; padding-bottom: 8px; }
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 22px; margin: 40px 0 14px; padding-top: 8px; }
.legal h5 { font-size: 16px; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.legal p { color: var(--text-body); font-size: 15px; line-height: 1.7; }
.legal ul { color: var(--text-body); font-size: 15px; line-height: 1.7; padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--pink); word-break: break-word; }
.legal a:hover { text-decoration: underline; }

/* --------- FERRAMENTAS / CALCULADORAS --------- */
.tools-hero { text-align: center; }
.tools-hero p.lead { font-size: clamp(16px, 1.7vw, 19px); max-width: 720px; margin: 0 auto; }
.tools-nav { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.tools-nav a {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--text-body);
  transition: border-color .15s, color .15s;
}
.tools-nav a:hover { border-color: var(--pink); color: var(--text); }

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 820px;
  margin: 0 auto 22px;
  scroll-margin-top: 90px;
}
.calc-head h2 { font-size: 24px; margin-bottom: 6px; }
.calc-pain { color: var(--text-muted); font-size: 14px; margin: 0 0 20px; }
.calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.calc-grid .field.full { grid-column: 1 / -1; }
@media (max-width: 560px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-card .btn-calc { margin-top: 18px; width: 100%; justify-content: center; }
.calc-hint { color: var(--text-muted); font-size: 12px; margin: 10px 0 0; }

.calc-result {
  margin-top: 22px;
  border-top: 1px dashed var(--border);
  padding-top: 22px;
  text-align: center;
}
.calc-result .big {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-result .big-label { color: var(--text); font-weight: 600; font-size: 15px; margin-top: 4px; }
.calc-result .detail { color: var(--text-muted); font-size: 13px; margin-top: 8px; }
.calc-result.is-error .big { font-size: 18px; background: none; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }

.maya-hook {
  margin-top: 20px;
  background: var(--surface-2);
  border: 1px solid var(--pink);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: left;
  display: flex; gap: 12px; align-items: flex-start;
}
.maya-hook .spark { color: var(--pink); flex-shrink: 0; margin-top: 2px; }
.maya-hook p { margin: 0; font-size: 14px; color: var(--text-body); line-height: 1.55; }
.maya-hook strong { color: var(--text); }

.calc-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.calc-result.is-error .maya-hook,
.calc-result.is-error .calc-actions { display: none; }

.lead-context {
  display: inline-block; margin: 10px auto 0;
  background: var(--surface-2); border: 1px solid var(--pink); color: var(--text);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600;
}
/* o atributo hidden precisa vencer o display acima */
.lead-context[hidden] { display: none; }
