:root {
  --bg: #0b1020;
  --bg-2: #0d1633;
  --card: #121a33;
  --line: #2b3e72;
  --text: #eff3ff;
  --muted: #afbbe2;
  --brand: #2f7cff;
  --accent: #22c55e;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, #101b3f 100%);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 480px; margin: 0 auto; padding: 0 16px; }
.hero { padding: 14px 0 8px; }
.hero-media { margin-top: 14px; padding: 8px; }
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.tag {
  display: inline-flex;
  border: 1px solid #5878c9;
  background: rgba(47, 124, 255, 0.16);
  color: #d9e6ff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}
h1 { font-size: 27px; line-height: 1.12; margin: 10px 0 8px; letter-spacing: -0.02em; }
h2 { font-size: 15px; color: var(--muted); font-weight: 500; }
.cta-wrap { margin-top: 14px; display: grid; gap: 10px; }
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 16px;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #052e16; }
.btn-secondary { border-color: #4a62a8; color: #dbe6ff; }
.btn-wa {
  background: #25d366;
  color: #06351b;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn-wa .wa-ico { width: 22px; height: 22px; flex: 0 0 22px; }
.btn-wa.lg { min-height: 58px; font-size: 17px; }
.btn-pulse { animation: waPulse 2.2s ease-in-out infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}
.wa-card { text-align: center; display: grid; gap: 12px; }
.wa-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.wa-badge {
  font-size: 12px;
  color: #cdeedd;
  border: 1px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
}
.micro { font-size: 12px; color: #9eb0e4; }
.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.keyword-focus {
  margin-top: 10px;
}
.keyword-focus p { font-size: 13px; color: #dce7ff; }
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  font-size: 12px;
  color: #dce7ff;
  border: 1px solid #4764ae;
  background: rgba(47, 124, 255, 0.13);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section { margin-top: 22px; }
.section-title { font-size: 22px; margin-bottom: 8px; }
.section-sub { font-size: 14px; color: #a9b6df; margin-bottom: 10px; }
.card {
  background: rgba(18, 26, 51, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}
.topic-grid { display: grid; gap: 10px; }
.topic-card img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}
.topic-card h3 { font-size: 15px; margin-bottom: 6px; }
.topic-card p { font-size: 13px; color: #b8c5eb; }

.funnel-grid { display: grid; gap: 10px; }
.funnel-card img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}
.funnel-card h3 { font-size: 15px; margin-bottom: 6px; }
.funnel-card p { font-size: 13px; color: #b8c5eb; }
.bullet { display: grid; gap: 10px; }
.bullet li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(18, 26, 51, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: #e6edff;
  font-size: 14px;
}
.dot { margin-top: 4px; width: 9px; height: 9px; background: var(--brand); border-radius: 50%; flex: 0 0 9px; }
.testimonials { display: grid; gap: 10px; }
.t {
  background: rgba(18, 26, 51, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.t-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #223a75;
  border: 1px solid #4a66b2;
  color: #d7e5ff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.avatar-photo {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #4a66b2;
}
.name { font-size: 14px; font-weight: 700; }
.city { font-size: 12px; color: #aab7de; }
.quote { font-size: 14px; color: #dae6ff; }
.local-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pill {
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.16);
  color: #d4fbe1;
  font-size: 13px;
  font-weight: 700;
}
.trust {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.14);
  color: #ffe8c0;
}
.note { font-size: 12px; color: #9fb2e3; margin-top: 8px; }
label { font-size: 13px; color: #c8d5ff; display: block; margin-bottom: 6px; }
input {
  width: 100%;
  border: 1px solid #3b4f88;
  border-radius: 12px;
  background: var(--bg-2);
  color: #f2f6ff;
  font-size: 16px;
  padding: 12px;
  margin-bottom: 10px;
}
input:focus { outline: none; border-color: #7da0ff; }
.btn-submit { width: 100%; background: var(--brand); color: #fff; }
#form { scroll-margin-top: 14px; }
footer { margin: 24px 0 84px; color: #9eb0de; font-size: 12px; }
.links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.links a { color: #cbdbff; text-decoration: underline; }
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10, 15, 31, 0) 0%, rgba(10, 15, 31, 0.96) 40%);
}
.sticky .btn { max-width: 480px; margin: 0 auto; }
@media (min-width: 768px) {
  .container { max-width: 820px; }
  .keyword-chips { grid-template-columns: 1fr 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .funnel-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr 1fr; }
  .sticky { display: none; }
  footer { margin-bottom: 24px; }
}

/* LGPD cookie consent bar (topo, leve, não cobre o botão do WhatsApp) */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  z-index: 70;
  background: rgba(13, 22, 51, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 8px 12px calc(8px + env(safe-area-inset-top));
  display: none;
}
.cookie-bar.show { display: block; }
body.has-cookie-bar { padding-top: 56px; }
.cookie-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.cookie-text { font-size: 12px; color: #cdd9ff; flex: 1 1 auto; line-height: 1.35; }
.cookie-text a { color: #9bc0ff; text-decoration: underline; }
.cookie-actions { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.cookie-btn {
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #4a62a8;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-accept { background: var(--accent); color: #052e16; border-color: transparent; }
.cookie-reject { background: transparent; color: #dbe6ff; }
.cookie-close {
  background: transparent;
  border: 0;
  color: #9eb0e4;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
}
@media (max-width: 380px) {
  .cookie-reject { display: none; }
}

/* ——— Site header / navigation ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-header nav {
  display: flex;
  gap: 14px;
}
.site-header nav a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.15s;
}
.site-header nav a:hover { color: var(--text); }

/* ——— Service tags (replaces keyword chips) ——— */
.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.service-tags li {
  font-size: 12px;
  color: #dce7ff;
  border: 1px solid #4764ae;
  background: rgba(47, 124, 255, 0.13);
  border-radius: 999px;
  padding: 6px 10px;
}

/* ——— FAQ accordion ——— */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  cursor: pointer;
}
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--brand);
  flex: 0 0 auto;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #b8c5eb;
  line-height: 1.5;
}

/* ——— About card ——— */
.about-card p {
  font-size: 14px;
  color: #cdd9ff;
  line-height: 1.55;
  margin-bottom: 8px;
}
.about-card p:last-child { margin-bottom: 0; }
