/* =============================================================
   LP Tricologia – Design System
   ============================================================= */

/* === RESET ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === DESIGN TOKENS ==================================== */
:root {
  /* Surfaces */
  --bg:         #f4f0e8;
  --bg-warm:    #ede8de;
  --bg-card:    #ffffff;
  --bg-card2:   #f9f6f1;
  --bg-dark:    #1c3336;
  --bg-dark2:   #243d41;

  /* Brand */
  --gold:       #bd9d6a;
  --gold-light: #ceb389;
  --gold-dim:   #a6895a;
  --gold-glow:  rgba(189,157,106,0.12);

  --teal:       #1c3336;
  --teal-mid:   #2e5457;
  --teal-light: #4a7d80;
  --teal-pale:  #dde8e9;

  /* Ink */
  --text-main:  #1c3336;
  --text-mid:   #3d5c5f;
  --text-muted: #7a9598;
  --text-inv:   #e9dfd1;

  /* Borders */
  --border:      rgba(28,51,54,0.10);
  --border-md:   rgba(28,51,54,0.18);
  --border-warm: rgba(189,157,106,0.25);
  --border-gold: rgba(189,157,106,0.40);

  /* Fonts (nossas) */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Radius */
  --radius:    14px;
  --radius-lg: 20px;

  /* Layout */
  --shell-max: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === LAYOUT WRAPPER (1200 max) ====================== */
.shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  width: 100%;
}

/* === SCROLL REVEAL ================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === NAV ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244,240,232,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 5vw;
  transition: background 0.3s;
}
.nav-shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--teal);
  text-decoration: none;
}
.nav-brand span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-mid); }
.nav-cta {
  background: var(--gold);
  color: #1c3336;
  border: none;
  padding: 9px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold-dim); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 22px;
  line-height: 1;
}

/* === HERO =========================================== */
.hero {
  min-height: 100vh;
  padding: 120px 5vw 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(189,157,106,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md), transparent);
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}
.hero-photo {
  display: block;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-dim);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-primary {
  background: var(--gold);
  color: #1c3336;
  padding: 15px 34px;
  border-radius: 34px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,157,106,0.32);
}
.btn-ghost {
  color: var(--teal-mid);
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--teal); }
.btn-ghost svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-stats {
  display: flex;
  gap: 2.8rem;
  padding-top: 2.2rem;
  border-top: 0.5px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 11px;
  color: var(--teal-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* === TRUST BAR ====================================== */
.trust-bar {
  background: var(--bg-warm);
  padding: 18px 5vw;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.trust-shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* === SECTION COMMONS ================================ */
section { padding: 90px 5vw; }
section > .shell { width: 100%; }

.section-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--teal);
  letter-spacing: -0.015em;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}

/* === PAIN =========================================== */
.pain-section { background: var(--bg-dark); }
.pain-section .section-label       { color: var(--gold); }
.pain-section .section-label::before { background: var(--gold-dim); }
.pain-section .section-title       { color: var(--text-inv); }
.pain-section .section-title em    { color: var(--gold-light); }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 0.5px solid rgba(233,223,209,0.15);
  transition: border-color 0.25s, transform 0.2s;
}
.pain-item:hover {
  border-color: rgba(189,157,106,0.35);
  transform: translateX(4px);
}
.pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.pain-text {
  font-size: 15px;
  color: rgba(233,223,209,0.88);
  font-weight: 400;
  line-height: 1.55;
}
.pain-cta-block {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 0.5px solid rgba(189,157,106,0.35);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
}
.pain-cta-block::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(189,157,106,0.08) 0%, transparent 70%);
}
.pain-cta-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-inv);
  line-height: 1.55;
  position: relative;
}
.pain-cta-quote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}
.pain-cta-quote::before {
  content: '"';
  font-size: 80px;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -20px;
  left: -10px;
  font-style: normal;
  line-height: 1;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar-r {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(189,157,106,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text-inv); }
.author-meta { font-size: 12px; color: rgba(233,223,209,0.6); margin-top: 2px; }
.pain-tiny {
  font-size: 12px;
  color: rgba(233,223,209,0.55);
  font-style: italic;
}

/* === PROCESS ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.process-card {
  padding: 30px 26px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(28,51,54,0.05);
}
.process-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,51,54,0.10);
}
.process-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  color: rgba(28,51,54,0.07);
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
  user-select: none;
}
.process-step-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--teal-mid);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.process-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 400;
}
.process-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.process-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.process-disclaimer {
  margin-top: 2rem;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* === VIDEO ========================================== */
.video-section { background: var(--bg-dark); padding: 90px 5vw; }
.video-section .section-label       { color: var(--gold); }
.video-section .section-label::before { background: var(--gold-dim); }
.video-section .section-title       { color: var(--text-inv); }
.video-section .section-title em    { color: var(--gold-light); }
.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark2);
  border: 1px solid rgba(189,157,106,0.20);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.video-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.video-copy h2 { font-size: clamp(28px, 3vw, 40px); }
.video-copy p {
  font-size: 16px;
  color: rgba(233,223,209,0.78);
  font-weight: 400;
  line-height: 1.85;
}
.video-copy strong {
  color: var(--gold-light);
  font-weight: 600;
}
.video-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}
.video-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(233,223,209,0.82);
  font-weight: 400;
  line-height: 1.5;
}
.video-points li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* === CONDITIONS ===================================== */
.conditions-section {
  background: var(--bg-card2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.conditions-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.conditions-intro h2 { font-size: clamp(28px, 3vw, 40px); }
.conditions-intro p {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.85;
  margin-top: 1.2rem;
}
.conditions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.condition-tag {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  border: 0.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.condition-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(189,157,106,0.08);
  transform: translateY(-1px);
}
.condition-tag .arrow {
  opacity: 0.45;
  font-size: 11px;
}

/* === BEFORE/AFTER (VERTICAL) ======================== */
.before-after-section { background: var(--bg-warm); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 2px 16px rgba(28,51,54,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(28,51,54,0.12);
}
/* VERTICAL — antes em cima, depois em baixo */
.ba-stack { display: flex; flex-direction: column; }
.ba-half {
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ba-half + .ba-half { border-top: 0.5px solid var(--border); }
.ba-half img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.ba-label.before {
  background: rgba(28,51,54,0.85);
  color: var(--text-inv);
}
.ba-label.after {
  background: rgba(189,157,106,0.92);
  color: #fff;
}
.ba-info {
  padding: 16px 20px;
  border-top: 0.5px solid var(--border);
}
.ba-case {
  font-size: 11px;
  color: var(--teal-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.ba-detail {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 400;
}
.ba-disclaimer {
  margin-top: 2rem;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  opacity: 0.8;
}

/* === BIO ============================================ */
.bio-section { background: #6a4f3e; }
.bio-section .section-label          { color: var(--gold-light); }
.bio-section .section-label::before  { background: var(--gold); }
.bio-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 3rem;
}
.bio-photo-wrap { position: relative; display: inline-block; align-self: flex-end; }
.bio-photo {
  width: 360px;
  max-width: 100%;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.bio-photo img {
  height: auto;
  display: block;
  background: transparent;
}
.bio-badge-floating {
  position: absolute;
  bottom: -16px;
  right: -20px;
  background: var(--text-inv);
  border: 0.5px solid rgba(189,157,106,0.40);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.bio-badge-label {
  font-size: 10px;
  color: var(--teal-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.bio-badge-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dim);
  line-height: 1;
}
.bio-text h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--text-inv);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bio-text h3 em { font-style: italic; color: var(--gold); font-weight: 500; }
.bio-desc {
  font-size: 16px;
  color: rgba(233,223,209,0.82);
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.bio-quote-block {
  margin-top: 1.5rem;
  padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bio-quote-block p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: rgba(233,223,209,0.88);
  line-height: 1.6;
}
.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
}
.credential {
  padding: 7px 15px;
  border: 0.5px solid var(--border-warm);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  font-weight: 500;
  background: rgba(189,157,106,0.10);
}

/* === TESTIMONIALS ================================= */
.testimonials-section { background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(28,51,54,0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(28,51,54,0.10);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
  font-family: var(--serif);
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 0.5px solid var(--border);
  padding-top: 1.2rem;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 1px solid rgba(28,51,54,0.12);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--sans);
}
.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}
.t-detail {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* === FORM ========================================= */
.form-section { background: var(--bg); }
.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: stretch;
  margin-top: 3rem;
}
.form-copy { display: flex; flex-direction: column; }
.form-copy h2 { font-size: clamp(28px, 3vw, 40px); }
.form-copy > p {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}
.form-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 6px 28px rgba(28,51,54,0.06);
}
.form-fields {
  display: grid;
  gap: 16px;
}
.form-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 0.5px solid var(--border-md);
  background: var(--bg-card2);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field::placeholder { color: var(--text-muted); }
.form-field:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(189,157,106,0.15);
}
.form-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-fieldset { border: 0; padding: 0; }
.form-legend {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .form-radio-grid { grid-template-columns: repeat(3, 1fr); } }
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0.5px solid var(--border-md);
  border-radius: 10px;
  background: var(--bg-card2);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.form-radio:hover { border-color: var(--gold-dim); color: var(--teal); }
.form-radio input { accent-color: var(--gold); }
.form-submit {
  margin-top: 6px;
  background: var(--gold);
  color: var(--teal);
  padding: 15px 28px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(189,157,106,0.30);
}
.form-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.form-feedback {
  font-size: 13.5px;
  margin-top: 4px;
}
.text-red-600   { color: #b91c1c; }
.text-green-600 { color: #15803d; }

/* === FAQ ========================================== */
.faq-section {
  background: var(--bg-card2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.faq-intro h2 { font-size: clamp(28px, 3vw, 40px); }
.faq-intro p {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}
.faq-list { display: flex; flex-direction: column; }

/* sanfona usando <details> nativo */
.faq-item {
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 0.5px solid var(--border); }

.faq-summary {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
}
.faq-summary:hover .faq-q { color: var(--teal); }
.faq-item[open] .faq-q { color: var(--teal); font-weight: 600; }

.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0.5px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  color: var(--teal);
  font-size: 12px;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: rgba(189,157,106,0.12);
  border-color: var(--border-gold);
}

.faq-answer {
  font-size: 14.5px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.85;
  padding: 0 0 22px;
}

/* === LOCATION ====================================== */
.location-section { background: var(--bg); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.location-card {
  padding: 28px;
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.location-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(28,51,54,0.10);
}
.location-city {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}
.location-state {
  font-size: 11px;
  color: var(--teal-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.location-address {
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}
.location-link {
  font-size: 12px;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.location-link svg { width: 14px; height: 14px; }
.location-disclaimer {
  margin-top: 1.5rem;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* === CTA FINAL ====================================== */
.cta-section {
  text-align: center;
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(189,157,106,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-shell { position: relative; }
.cta-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
  opacity: 0.7;
}
.cta-tagline {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text-inv);
  margin-bottom: 1.5rem;
}
.cta-section h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
.cta-lead {
  font-size: 17px;
  color: rgba(233,223,209,0.72);
  font-weight: 400;
  margin: 0 auto 3rem;
  max-width: 520px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-large {
  padding: 17px 42px;
  border-radius: 34px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 0.5px solid transparent;
}
.btn-large.primary {
  background: var(--gold);
  color: var(--teal);
}
.btn-large.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(189,157,106,0.32);
}
.btn-large.outline {
  background: transparent;
  color: rgba(233,223,209,0.85);
  border-color: rgba(233,223,209,0.25);
}
.btn-large.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(189,157,106,0.06);
}
.trust-pills {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(233,223,209,0.68);
  font-weight: 400;
}
.trust-pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* === FOOTER ========================================= */
footer {
  background: var(--bg-dark);
  border-top: 0.5px solid rgba(233,223,209,0.1);
  padding: 44px 5vw;
}
.footer-shell {
  max-width: var(--shell-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-inv);
  text-decoration: none;
}
.footer-brand span { color: var(--gold); font-style: italic; font-weight: 500; }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12.5px;
  color: rgba(233,223,209,0.6);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: rgba(233,223,209,0.4);
}
.footer-fallback {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 12.5px;
  color: rgba(233,223,209,0.55);
}

/* === UTILITIES ====================================== */
.hidden { display: none !important; }
.self-start { align-self: flex-start; }

/* WhatsApp tip dentro do form */
.whats-tip {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}
.whats-tip strong { color: var(--teal); font-weight: 600; }

/* Nome do local destacado dentro do endereço */
.location-name {
  color: var(--text-main);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}

/* Botão usado como link no footer (reset visual) */
.linkish-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: inherit;
  letter-spacing: inherit;
}

/* === FOCUS ========================================= */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (hover: none) { a, button { transition: none !important; } }

/* === RESPONSIVE ===================================== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-layout { grid-template-columns: 1fr; gap: 2rem; }
  .bio-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-photo-wrap { display: flex; justify-content: center; }
  .video-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .hero {
    padding: 100px 1.2rem 60px;
    text-align: center;
  }
  .hero-shell { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo { max-width: 320px; margin-inline: auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.8rem; }

  section { padding: 60px 1.2rem; }
  .video-section, .cta-section { padding: 60px 1.2rem; }

  .pain-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .location-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .footer-shell { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .trust-shell { gap: 1.2rem; justify-content: flex-start; }

  .pain-cta-quote { font-size: 18px; }
  .pain-cta-block { padding: 28px; }
  .section-title { line-height: 1.18; }
}
