/* ============================================================
   PRONTU · Landing Comercial
   Design system + componentes de mockup mobile
   ============================================================ */

:root {
  --navy: #0b1121;
  --navy-2: #111a30;
  --ink: #0f172a;
  --slate: #475569;
  --slate-light: #64748b;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --bg: #f6f8fb;
  --card: #ffffff;
  --brand: #2563eb;
  --brand-2: #1d4ed8;
  --brand-grad: linear-gradient(135deg, #3b82f6, #2563eb);
  --brand-grad-2: linear-gradient(135deg, #2563eb, #1d4ed8);
  --green: #25d366;
  --green-dark: #1ebe5c;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius: 16px;

  /* Tipografia: Display · Corpo · Auxiliar */
  --font-display: 'Racing Sans One', 'Arial Black', sans-serif;
  --font-body: 'Exo 2', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-helper: 'Saira', 'Segoe UI', system-ui, sans-serif;
}

[data-theme="dark"] {
  --navy: #050a16;
  --navy-2: #0f172a;
  --ink: #e2e8f0;
  --slate: #94a3b8;
  --slate-light: #94a3b8;
  --muted: #64748b;
  --line: #1e293b;
  --bg: #070c1a;
  --card: #0f172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.gradient-text {
  color: #7dd3fc;
}

/* ---------------- Tipografia de destaque ----------------
   Display: Racing Sans One (títulos, números) 
   Auxiliar: Saira (botões, selos, legendas) */
h1, h2, h3, h4, h5,
.logo,
.pprice,
.stat .num,
.feature-copy .num,
.snum {
  font-family: var(--font-display);
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
}

.eyebrow,
.hero-badge,
.nav-links,
.btn,
.chip,
.phone-cap,
.export-btn,
.stat .label,
.pperiod {
  font-family: var(--font-helper);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: #eaf1ff;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------------- Botões ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.4);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--brand);
  background: #f3f7ff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ---------------- Navegação ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--brand);
}

.nav-links {
  display: none;
  gap: 1.6rem;
  font-weight: 600;
  color: var(--slate);
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.theme-toggle:active {
  transform: scale(0.92);
}

.nav-cta .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
}

/* ---------------- Hero ---------------- */
.hero {
  background: radial-gradient(1200px 500px at 70% -10%, #1e293b 0%, var(--navy) 60%);
  color: #fff;
  padding: 4.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 10% 20%, rgba(56, 189, 248, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #cbd5e1;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero p.lead {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.hero-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-mini i {
  color: #22c55e;
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* ---------------- Stats ---------------- */
.stats {
  background: var(--navy);
  color: #fff;
  padding: 2.2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: #60a5fa;
}

.stat .label {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------- Dores ---------------- */
.pains {
  background: var(--card);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pain-card .q {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.pain-card .q i {
  color: var(--red);
}

.pain-card .a {
  color: var(--slate);
  font-size: 0.97rem;
}

.pain-card .a b {
  color: var(--brand);
}

/* ---------------- Features (com prints) ---------------- */
.features {
  background: var(--bg);
}

.feature-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--line);
}

.feature-copy .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-grad-2);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.feature-copy h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-copy p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.feature-list li i {
  color: var(--green);
  margin-top: 4px;
}

@media (min-width: 880px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row.reverse .feature-copy {
    order: 2;
  }
}

/* ---------------- Phone mockup ---------------- */
.phone-wrap {
  display: flex;
  justify-content: center;
}

/* Moldura do celular removida: mostramos o print de forma simples e responsiva */
.phone {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone::before {
  display: none;
}

.phone-screen {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  display: block;
  position: relative;
}

/* Imagem de print: sem moldura de celular, só a foto */
.phone-screen .shot {
  width: 100%;
  height: auto;
  display: block;
}

.screen-scroll {
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mock-topbar {
  background: var(--brand-grad-2);
  color: #fff;
  padding: 1.6rem 1rem 0.9rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-topbar .sub {
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.9;
}

.mock-body {
  padding: 0.9rem;
  flex: 1;
  overflow: hidden;
}

.searchpill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.6rem 0.9rem;
  color: var(--slate-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.res-group {
  margin-bottom: 0.9rem;
}

.res-group .gt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-light);
  margin: 0.4rem 0.2rem;
}

.res-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.res-item .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ic.blue { background: var(--brand); }
.ic.indigo { background: var(--brand-2); }
.ic.green { background: var(--green); }
.ic.amber { background: var(--amber); }

.res-item .t {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.res-item .d {
  font-size: 0.78rem;
  color: var(--slate-light);
}

.chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
}

.chip.warn { background: #fef3c7; color: #b45309; }
.chip.primary { background: #dbeafe; color: #1d4ed8; }
.chip.success { background: #dcfce7; color: #15803d; }
.chip.danger { background: #fee2e2; color: #b91c1c; }
.chip.gray { background: #e2e8f0; color: #475569; }

/* OS form mock */
.field {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.6rem;
}

.field .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
}

.field .val {
  font-weight: 700;
  font-size: 0.92rem;
}

.item-row {
  display: flex;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.item-row .desc { font-weight: 600; }
.item-row .price { font-weight: 700; color: var(--brand); }

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin: 0.2rem 0 0.7rem;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.mock-linkbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* Histórico mock */
.hist-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
}

.hist-item .row1 {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
}

.hist-item .row2 {
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 0.15rem;
}

/* Relatório mock */
.report-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.rcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
}

.rcard .n {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
}

.rcard .l {
  font-size: 0.68rem;
  color: var(--slate-light);
}

.export-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.export-btn {
  flex: 1;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.export-btn i { margin-right: 0.3rem; color: var(--brand); }
.export-btn.green i { color: var(--green-dark); }

/* Car SVG vistoria */
.car-svg-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.6rem;
  margin-bottom: 0.7rem;
}

.car-svg {
  width: 100%;
  height: auto;
  display: block;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.red { background: var(--red); }
.dot.orange { background: var(--amber); }
.dot.blue { background: var(--brand); }

.area-tag .a-t { font-weight: 700; }
.area-tag .a-d { color: var(--slate-light); font-size: 0.76rem; }

/* Small caption under phone */
.phone-cap {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.9rem;
  font-weight: 600;
}

/* Dual mock (comercial: 2 prints) */
.dual-mock {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

@media (min-width: 720px) {
  .dual-mock {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------- Print paper mock (OS / Vistoria) ---------------- */
.paper-wrap {
  display: flex;
  justify-content: center;
}

.paper {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  font-size: 0.78rem;
  color: #1f2937;
}

/* Quando o "papel" é uma imagem de PDF impresso */
.paper:has(img) {
  padding: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 10px;
}

.paper .paper-img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.paper .p-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}

.paper .p-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.paper .p-meta {
  font-size: 0.72rem;
  color: var(--slate);
}

.paper table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0;
}

.paper th,
.paper td {
  border: 1px solid #cbd5e1;
  padding: 0.3rem 0.4rem;
  text-align: left;
}

.paper th {
  background: #f1f5f9;
  font-size: 0.7rem;
}

.paper .p-total {
  text-align: right;
  font-weight: 800;
  margin-top: 0.4rem;
}

.paper .p-foot {
  margin-top: 0.7rem;
  border-top: 1px dashed #cbd5e1;
  padding-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--slate);
  text-align: center;
}

.paper .sig {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--slate);
}

.paper .sig div {
  width: 45%;
  border-top: 1px solid #94a3b8;
  padding-top: 0.3rem;
  text-align: center;
}

/* ---------------- Depoimentos ---------------- */
.testi {
  background: var(--card);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.testi-card p {
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.9rem;
}

.testi-card .who {
  font-weight: 700;
  font-size: 0.92rem;
}

.testi-card .where {
  color: var(--slate-light);
  font-size: 0.82rem;
}

/* ---------------- Planos / Preços ---------------- */
.pricing {
  background: var(--navy);
  color: #fff;
}

.pricing .section-title,
.pricing .section-sub {
  color: #fff;
}

.pricing .section-sub {
  color: #cbd5e1;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

@media (min-width: 760px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: #111a30;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
}

.price-card .ptag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
}

.price-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.price-card .pprice {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0.4rem 0 0.2rem;
}

.price-card .pperiod {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.price-card ul li {
  display: flex;
  gap: 0.5rem;
}

.price-card ul li i {
  color: #22c55e;
}

/* ---------------- Como funciona ---------------- */
.how {
  background: var(--card);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  counter-reset: step;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  counter-increment: step;
}

.step .snum {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-grad-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.step p {
  color: var(--slate);
  font-size: 0.92rem;
}

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q i {
  transition: transform 0.2s ease;
  color: var(--brand);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.2rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding: 0 1.2rem 1.1rem;
}

/* ---------------- CTA final ---------------- */
.cta-final {
  background: var(--brand-grad-2);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-final h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.6rem;
  font-size: 1.1rem;
}

.cta-final .hero-cta {
  justify-content: center;
}

.cta-final .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-final .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------------- Seção Preço (depoimento + CTA) ---------------- */
.preco {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.preco h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #7dd3fc;
}

.preco .depoimento {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2e8f0;
  font-style: italic;
}

.preco .depoimento strong {
  color: #fff;
}

.preco .cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.preco .cta:hover {
  background: var(--green-dark);
  transform: scale(1.02);
}

.preco .small {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------------- Rodapé ---------------- */
.footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer .logo {
  color: #fff;
}

.footer h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: #fff;
}

.footer .contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer .contact-line i {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------------- Util ---------------- */
.center {
  text-align: center;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.pill {
  background: #eaf1ff;
  color: var(--brand);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------------- Rodapé: links legais ---------------- */
.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover {
  color: #fff;
}

/* ---------------- Páginas legais (Termos / Privacidade) ---------------- */
.legal {
  background: var(--bg);
  padding: 3.5rem 0 4.5rem;
  min-height: 60vh;
}

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.legal h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.legal .update {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  color: var(--brand);
  margin: 2.2rem 0 0.7rem;
}

.legal p,
.legal li {
  color: var(--slate);
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
}

.legal ul {
  padding-left: 1.3rem;
  margin-bottom: 0.7rem;
}

.legal a {
  color: var(--brand);
  text-decoration: underline;
}

/* ---------------- Banner de cookies ---------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--card);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.18);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show {
  max-height: 60vh;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  color: var(--slate);
  font-size: 0.9rem;
  max-width: 720px;
}

.cookie-banner p strong {
  color: var(--ink);
}

.cookie-banner a {
  color: var(--brand);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner .btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------------- Overrides do dark mode ---------------- */
[data-theme="dark"] .nav {
  background: rgba(5, 10, 22, 0.85);
  border-bottom-color: var(--line);
}

[data-theme="dark"] .eyebrow {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

[data-theme="dark"] .pill {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

[data-theme="dark"] .btn-ghost:hover {
  background: rgba(37, 99, 235, 0.12);
}

[data-theme="dark"] .searchpill {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .paper th {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .mock-linkbar {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}
