/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --font-display: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Espresso — texto, blocos escuros, botão primário */
  --ink:         #2d2a26;
  --ink-hover:   #423d36;
  --ink-shadow:  0 8px 24px rgba(45, 42, 38, 0.28);

  /* Terracota — cor de marca / acentos (links, pills, ícones) */
  --teal:        #9a6948;
  --teal-hover:  #84583c;
  --teal-soft:   rgba(154, 105, 72, 0.10);
  --teal-border: rgba(154, 105, 72, 0.22);

  /* Dourado quente — acento secundário */
  --warm-accent: #b68255;
  --warm-accent-soft: rgba(182, 130, 85, 0.16);

  --bg-white:    #faf5ec;
  --bg-light:    #efe6d8;
  --bg-warm:     #f4ead9;
  --bg-dark:     #2d2a26;

  --text:        #2d2a26;
  --text-2:      rgba(45, 42, 38, 0.72);
  --text-3:      rgba(45, 42, 38, 0.52);
  --text-inv:    #f4ead9;
  --text-inv-2:  rgba(244, 234, 217, 0.78);
  --text-inv-3:  rgba(244, 234, 217, 0.50);

  --border:      rgba(45, 42, 38, 0.12);
  --red-muted:   #a8694f;

  --shadow-sm:   0 1px 3px rgba(45,42,38,0.06);
  --shadow-md:   0 4px 20px rgba(45,42,38,0.08);
  --shadow-lg:   0 12px 40px rgba(45,42,38,0.12);
  --shadow-teal: 0 8px 24px rgba(45,42,38,0.20);

  --r-xl:   16px;
  --r-lg:   12px;
  --r-md:   8px;
  --r-sm:   6px;
  --r-pill: 999px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { overflow: clip; }

/* ═══════════════════════════════════════════
   GRAIN / NOISE TEXTURE (global overlay)
═══════════════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

h1, h2, h3, p, ul { margin: 0; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 3.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

p, li, label, input, button, select { font-size: 1rem; }

a { color: var(--teal); }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

.section   { padding: 48px 0; }
.narrow    { max-width: 720px; }
.txt-center { text-align: center; }

.narrow h2 ~ p,
.narrow h2 ~ div { margin-top: 20px; }
.narrow p { color: var(--text-2); line-height: 1.72; }
.narrow p + p { margin-top: 12px; }

/* Section backgrounds */
.bg-light { background: var(--bg-light); }

.bg-warm {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(182,130,85,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(154,105,72,0.08) 0%, transparent 45%),
    var(--bg-warm);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% -10%, rgba(154,105,72,0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(182,130,85,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(35,32,29,0.62) 0%, transparent 80%),
    var(--bg-dark);
  color: var(--text-inv);
}

/* ═══════════════════════════════════════════
   PILLS
═══════════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(154,105,72,0.16);
}

.pill-outline {
  background: rgba(255,255,255,0.08);
  color: var(--text-inv-2);
  border: 1px solid rgba(255,255,255,0.18);
}

.pill-warm {
  background: var(--warm-accent-soft);
  color: var(--warm-accent);
}

/* Pill neutro (referência Hubfy — hero) */
.pill--launch {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.8125rem;
}

.pill-on-dark {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════
   TOP ANNOUNCE (lançamento)
═══════════════════════════════════════════ */
.top-announce {
  background: var(--teal);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  line-height: 1.45;
  padding: 9px 0;
}

.top-announce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  text-align: center;
}

.top-announce-text {
  color: rgba(255, 255, 255, 0.84);
}

.top-announce-cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.top-announce-cta:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  height: 72px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.header-nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--text);
}

.header-nav a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.logo img {
  display: block;
  height: clamp(30px, 7vw, 38px);
  width: auto;
}

.logo:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  padding: 14px 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, transform 160ms ease, box-shadow 180ms ease;
  box-shadow: 0 6px 18px rgba(154, 105, 72, 0.28);
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  background: var(--teal-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(154, 105, 72, 0.34);
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal-border);
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--teal-soft);
  color: var(--teal-hover);
  border-color: rgba(154, 105, 72, 0.36);
  box-shadow: none;
}

/* CTA sobre fundo escuro → terracota para não desaparecer */
.section-dark .btn {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 24px rgba(154,105,72,0.42);
}

.section-dark .btn:hover,
.section-dark .btn:focus-visible {
  background: var(--warm-accent);
  box-shadow: 0 12px 32px rgba(182,130,85,0.48);
}

.section-dark .btn:focus-visible {
  outline-color: var(--warm-accent);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(154, 105, 72, 0.24);
}

.btn-ink {
  background: var(--ink);
  color: var(--text-inv);
  box-shadow: var(--ink-shadow);
}

.btn-ink:hover,
.btn-ink:focus-visible {
  background: var(--ink-hover);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.btn-ink:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   HERO — mesh gradient background
═══════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse at 0% 40%, rgba(154,105,72,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 10%, rgba(182,130,85,0.10) 0%, transparent 42%),
    radial-gradient(ellipse at 60% 100%, rgba(201,181,150,0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 20%, rgba(239,230,216,0.65) 0%, transparent 55%),
    var(--bg-white);
  padding: 36px 0 48px;
}

.hero::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 40px;
  background: linear-gradient(90deg, transparent, rgba(154,105,72,0.16) 30%, rgba(182,130,85,0.15) 70%, transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1 { color: var(--text); }

.hero-sub {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.hero-cta-secondary {
  align-self: center;
}

.btn-hero {
  margin-top: 0;
  width: 100%;
  padding: 16px 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  background: rgba(154,105,72,0.08);
  border: 1px solid rgba(154,105,72,0.16);
  border-radius: var(--r-pill);
}

.badge-check {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
}

.trust-line {
  margin-top: 14px !important;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-media {
  position: relative;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--r-xl);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.14),
    0 8px 20px rgba(0,0,0,0.06);
}

/* Offset frame accent — conservative on mobile, bolder on desktop */
.hero-media::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -4px;
  bottom: -4px;
  border-radius: calc(var(--r-xl) + 4px);
  border: 1.5px solid rgba(154,105,72,0.18);
  z-index: 0;
}

/* Mesh glow behind photo */
.hero-media::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: calc(var(--r-xl) + 16px);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(154,105,72,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(182,130,85,0.14) 0%, transparent 50%);
  z-index: -1;
  filter: blur(8px);
}

/* Floating badge on photo */
.hero-img-badge {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 14px;
  padding: 7px 14px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

/* ═══════════════════════════════════════════
   PROBLEMA — PAIN LIST (editorial)
═══════════════════════════════════════════ */
.pain-list {
  margin-top: 32px;
}

.pain-list::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(154,105,72,0.12));
  border-radius: 2px;
}

.pain-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pain-item:last-child { border-bottom: none; }

.pain-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.5;
  letter-spacing: -0.02em;
  line-height: 1.8;
  flex-shrink: 0;
  width: 20px;
}

.pain-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
}

.pain-item p {
  margin-top: 3px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.highlight-text {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 24px !important;
}

.section-closer {
  position: relative;
  margin-top: 36px !important;
  padding-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 1.9rem);
  font-weight: 600;
  color: var(--text) !important;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.section-closer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(182,130,85,0.45));
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS (ESPAÇO)
═══════════════════════════════════════════ */
.feature-stack {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.feature-card {
  --feature-bg: var(--bg-warm);
  --feature-fade-rgb: 244, 234, 217;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--feature-bg);
  border-radius: var(--r-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--teal), rgba(182,130,85,0.38));
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.feature-img {
  position: relative;
  overflow: hidden;
}

.feature-img::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 -2px;
  height: calc(40% + 2px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(var(--feature-fade-rgb), 0) 0%,
    rgba(var(--feature-fade-rgb), 0.16) 35%,
    rgba(var(--feature-fade-rgb), 0.68) 76%,
    var(--feature-bg) 100%
  );
}

.feature-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.feature-card:hover .feature-img img {
  transform: scale(1);
}

/* Bloco escuro (contraste estilo Hubfy) */
.feature-card--dark {
  --feature-bg: var(--ink);
  --feature-fade-rgb: 45, 42, 38;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.feature-card--dark::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.04));
}

.feature-card--dark .feature-body h3 {
  color: #fff;
}

.feature-card--dark .feature-body p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card--dark .feature-img {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-stack .feature-card:nth-child(1) .feature-img img { object-position: center 60%; }
.feature-stack .feature-card:nth-child(2) .feature-img img { object-position: 12% center; }
.feature-stack .feature-card:nth-child(3) .feature-img img { object-position: 88% center; }

.feature-body h3 {
  color: var(--text);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.22;
}

.feature-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -1px;
  padding: 24px;
}

.feature-body::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--feature-bg);
}

.feature-body p {
  margin-top: 8px;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PREÇO
═══════════════════════════════════════════ */
.price-section {
  background:
    radial-gradient(ellipse at 8% 20%, rgba(154,105,72,0.30) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 82%, rgba(182,130,85,0.18) 0%, transparent 44%),
    linear-gradient(135deg, #2d2a26 0%, #38322c 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.price-section .narrow p {
  color: var(--text-inv-2);
}

.price-policy {
  color: var(--text-inv-3) !important;
  font-size: 0.94rem;
}

.price-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 28px 24px 32px;
  width: 100%;
  max-width: 460px;
  background:
    linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
    linear-gradient(135deg, rgba(154,105,72,0.42), rgba(154,105,72,0.14) 50%, rgba(182,130,85,0.30)) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(154,105,72,0.10);
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-family: var(--font-display);
  color: var(--teal);
  font-size: clamp(3.6rem, 11vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-unit {
  color: var(--text-3);
  font-size: 1rem;
  font-weight: 600;
}

.price-includes-title {
  margin-top: 22px;
  color: var(--text);
  font-weight: 600;
}

.price-includes {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
  display: grid;
  gap: 8px;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
}

.price-includes li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

/* ═══════════════════════════════════════════
   MID-PAGE CTA BREAK
═══════════════════════════════════════════ */
.section-cta-break {
  padding: 48px 0;
  background:
    linear-gradient(135deg, rgba(154,105,72,0.10) 0%, rgba(239,230,216,0.88) 50%, rgba(182,130,85,0.10) 100%),
    var(--bg-light);
  border-top: 1px solid rgba(154,105,72,0.18);
  border-bottom: 1px solid rgba(154,105,72,0.18);
}

.section-cta-break .narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-break-text {
  color: var(--text-2);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   LOCALIZAÇÃO
═══════════════════════════════════════════ */
.location-grid {
  display: grid;
  gap: 24px;
}

.location-copy h2 {
  text-wrap: balance;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.location-copy > p {
  margin-top: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.location-address {
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
}

.location-route {
  margin-top: 18px;
}

.location-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map-wrap iframe {
  width: 100%;
  height: 300px;
  display: block;
}

/* ═══════════════════════════════════════════
   FAQ  (padrão button/aria-expanded)
═══════════════════════════════════════════ */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

/* Remove heading margin/style — apenas estrutura semântica */
.faq-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: color 160ms ease;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.faq-item.is-open .faq-trigger {
  color: var(--teal);
}

/* Ícone +/− via CSS puro */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity  200ms ease;
}

.faq-icon::before {
  width: 18px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 18px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Painel — grid-template-rows é a abordagem mais confiável:
   nunca requer um max-height arbitrário e não causa layout shift */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  padding-bottom: 0;
  color: var(--text-2);
  line-height: 1.72;
  font-size: 0.96rem;
  transition: padding-bottom 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-panel-inner {
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  align-items: start;
}

.cta-copy { max-width: 600px; }
.cta-copy h2 { color: var(--text-inv); }
.cta-copy p {
  color: var(--text-inv-2);
  line-height: 1.65;
  margin-top: 12px;
}

.urgency-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* Lead form */
.lead-form {
  max-width: 520px;
  border-radius: var(--r-xl);
  padding: 24px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: grid;
  gap: 0;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.form-field:first-child { margin-top: 0; }

.form-field label {
  color: var(--text-inv-2);
  font-weight: 600;
  font-size: 0.88rem;
}

.label-opt {
  font-weight: 400;
  color: var(--text-inv-3);
}

.form-field input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-inv);
  transition: border-color 150ms, background 150ms;
}

.form-field input::placeholder { color: var(--text-inv-3); }

.form-field input:focus-visible {
  outline: none;
  border-color: var(--teal);
  background: rgba(255,255,255,0.10);
}

.btn-submit { margin-top: 18px; }

.form-caption {
  margin-top: 10px;
  color: var(--text-inv-3);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}

.cta-final-action {
  display: flex;
  margin-top: 24px;
}

body[data-launch-mode="final"] .cta-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

body[data-launch-mode="final"] .cta-copy {
  max-width: 760px;
}

body[data-launch-mode="final"] .cta-final-action {
  justify-content: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #2a2622;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}

.footer-inner span,
.footer-inner a {
  color: var(--text-inv-3);
  text-decoration: none;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .footer-inner span,
  .footer-inner a {
    font-size: 0.84rem;
  }
}

.footer-inner a:hover { color: var(--text-inv-2); }
.footer-sep { color: rgba(255,255,255,0.18) !important; }


/* ═══════════════════════════════════════════
   LAUNCH MODE VISIBILITY
═══════════════════════════════════════════ */
body[data-launch-mode="prelaunch"] [data-show-in~="final"]:not([data-show-in~="prelaunch"]),
body[data-launch-mode="final"]     [data-show-in~="prelaunch"]:not([data-show-in~="final"]),
[hidden] {
  display: none !important;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {

  /* Base reveal state */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
    transition:
      opacity   0.65s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
  }

  /* Feature images: scale + fade reveal tied to card */
  .feature-img img {
    opacity: 0;
    transform: scale(1.07) translateY(12px);
    will-change: opacity, transform;
    transition:
      opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feature-card.is-visible .feature-img img {
    opacity: 1;
    transform: scale(1) translateY(0);
    will-change: auto;
  }

  /* Hero copy — entrance on page load */
  @keyframes hero-copy-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-copy {
    animation: hero-copy-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  }

  /* Hero image — mobile: fade up; desktop: slide from right */
  @keyframes hero-media-in {
    from { opacity: 0; transform: translateX(28px) translateY(8px); }
    to   { opacity: 1; transform: translateX(0) translateY(0); }
  }

  @keyframes hero-media-in-mobile {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-media {
    animation: hero-media-in-mobile 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
  }

  .hero-media img {
    transform-origin: center center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET ≥ 768px
═══════════════════════════════════════════ */
@media (min-width: 768px) {
  .container { padding: 0 40px; }

  .section { padding: 72px 0; }

  .hero { padding: 52px 0 64px; }
  .hero-grid { gap: 40px; }

  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-cta-secondary {
    align-self: auto;
  }

  .feature-stack { gap: 18px; }
  .feature-card { gap: 0; }

  .location-map-wrap iframe { height: 380px; }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-copy { max-width: none; }


}

/* ═══════════════════════════════════════════
   RESPONSIVE — DESKTOP ≥ 1024px
═══════════════════════════════════════════ */
@media (min-width: 1024px) {
  .section { padding: 88px 0; }
  .container { padding: 0 40px; }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
  }

  .header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
  }

  /* Hero */
  .hero { padding: 64px 0 80px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .hero-media {
    animation-name: hero-media-in;
  }
  .hero-media img {
    aspect-ratio: 1/1;
    object-position: center 55%;
  }
  .hero-media::before {
    top: 16px;
    left: 16px;
    right: -14px;
    bottom: -14px;
  }
  .btn-hero {
    width: fit-content;
    min-width: 260px;
  }

  /* Features */
  .feature-card {
    grid-template-columns: 1fr 1fr;
    height: 360px;
    align-items: stretch;
  }
  .feature-img::after {
    inset: 0 0 0 auto;
    width: 38%;
    height: auto;
    background: linear-gradient(
      to right,
      rgba(var(--feature-fade-rgb), 0) 0%,
      rgba(var(--feature-fade-rgb), 0.16) 35%,
      rgba(var(--feature-fade-rgb), 0.68) 76%,
      var(--feature-bg) 100%
    );
  }
  .feature-card--reverse .feature-img::after {
    inset: 0 auto 0 0;
    background: linear-gradient(
      to left,
      rgba(var(--feature-fade-rgb), 0) 0%,
      rgba(var(--feature-fade-rgb), 0.16) 35%,
      rgba(var(--feature-fade-rgb), 0.68) 76%,
      var(--feature-bg) 100%
    );
  }
  .feature-card--reverse .feature-img { order: 2; }
  .feature-card--reverse .feature-body { order: 1; }
  .feature-body {
    margin-top: 0;
    padding: 40px;
  }
  .feature-body::before { content: none; }

  /* Price */
  .price-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .location-map-wrap iframe { height: 420px; }

  /* CTA */
  .lead-form { max-width: none; }
}

@media (min-width: 1200px) {
  .container { padding: 0; }
}
