/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:         #0C0F0A;
  --ink-80:      rgba(12,15,10,.8);
  --ink-mid:     #2E3028;
  --white:       #FAFAF7;
  --cream:       #F2EBD9;
  --cream-dark:  #E8DFC8;
  --green:       #0F2E22;
  --green-mid:   #1A5C3A;
  --green-bright:#2E9959;
  --amber:       #D4870F;
  --amber-light: #F2A830;
  --amber-pale:  #FDF3E3;
  --muted:       #7A776E;
  --border:      #DDD6C8;
  --radius:      10px;
  --radius-lg:   18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* =============================================
   LABELS & HELPERS
   ============================================= */
.section-label {
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}
.section-label.light  { color: rgba(255,255,255,.35); }
.section-label.amber  { color: var(--amber-light); }
.section-label.green  { color: var(--green-bright); }

.section-head { margin-bottom: 56px; }
.section-head h2 { max-width: 640px; }
.section-head.centered { text-align: center; }
.section-head.centered h2 { margin: 0 auto; }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.85;
  font-weight: 300;
  margin-top: 16px;
}
.section-sub em { font-style: normal; font-weight: 600; color: var(--green-mid); }
.section-sub-center { font-size: 1rem; color: var(--muted); max-width: 580px; margin: 16px auto 0; line-height: 1.85; font-weight: 300; }

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(212,135,15,.35);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,135,15,.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { flex-shrink: 0; }

.btn-full { width: 100%; justify-content: center; }

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-top: 20px;
}
.btn-outline:hover { border-color: var(--ink); background: var(--cream); }

.btn-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  margin-top: 28px;
  transition: background .2s, transform .15s;
}
.btn-guarantee:hover { background: var(--green); transform: translateY(-2px); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,15,10,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.nav-logo img { filter: brightness(0) invert(1); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--amber-light);
  border: 1px solid rgba(242,168,48,.3);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background .2s, border-color .2s;
  letter-spacing: .01em;
}
.nav-cta:hover { background: rgba(242,168,48,.1); border-color: var(--amber-light); }

/* =============================================
   HERO — DARK, ENORME, VIVO
   ============================================= */
.hero {
  background: var(--ink);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  top: -40px;
  right: -40px;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--amber); }
  50% { box-shadow: 0 0 16px var(--amber-light); }
}

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.hero-fine { font-size: .76rem; color: rgba(255,255,255,.25); margin-top: 14px; letter-spacing: .01em; }

/* Hero Card: mockup Google */
.hero-card {
  background: #141810;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gcard-header {
  background: #1A1E16;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gcard-bar {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gcard-search-text {
  width: 120px; height: 8px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
}

.gcard-results { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.gcard-result {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 14px 16px;
  transition: opacity .3s;
}
.gcard-result.first {
  background: rgba(42,121,79,.15);
  border-color: rgba(42,121,79,.4);
}
.gcard-result.faded { opacity: .5; }
.gcard-result.faded-2 { opacity: .25; }

.gr-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-bright);
  border: 1px solid var(--green-bright);
  border-radius: 3px;
  padding: 2px 6px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.gr-title {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 3px;
}
.gr-title.organic { color: rgba(255,255,255,.4); font-weight: 400; font-size: .8rem; }
.gr-url { font-size: .72rem; color: rgba(255,255,255,.3); margin-bottom: 5px; }
.gr-desc { font-size: .75rem; color: rgba(255,255,255,.4); line-height: 1.4; }

.gcard-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 16px 20px;
  gap: 0;
}
.gcs-item {
  flex: 1;
  text-align: center;
}
.gcs-n {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.gcs-l {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.gcs-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.08);
}

/* =============================================
   TICKER
   ============================================= */
.ticker-bar {
  background: var(--amber);
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(12,15,10,.75);
  padding: 0 20px;
}
.ticker-dot { color: rgba(12,15,10,.35) !important; padding: 0 4px !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   PROBLEMA — LISTA EDITORIAL, LINHA A LINHA
   ============================================= */
.problem-section {
  background: var(--ink);
  padding: 100px 0;
}

.problem-intro {
  margin-bottom: 64px;
  max-width: 720px;
}
.problem-intro h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.problem-intro h2 em {
  font-style: italic;
  color: var(--amber-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pain-cell {
  position: relative;
  padding: 52px 44px;
  overflow: hidden;
  transition: background .3s;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pain-cell:nth-child(even) { border-right: none; }
.pain-cell:nth-child(3),
.pain-cell:nth-child(4) { border-bottom: none; }

.pain-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(212,135,15,.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.pain-cell:hover { background: #111410; }
.pain-cell:hover::after { opacity: 1; }

.pain-ghost {
  font-family: 'Fraunces', serif;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.04);
  line-height: 1;
  position: absolute;
  top: 12px; right: 20px;
  pointer-events: none;
  transition: color .3s;
}
.pain-cell:hover .pain-ghost { color: rgba(212,135,15,.07); }

.pain-inner { position: relative; }

.pain-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.pain-title em {
  font-style: italic;
  color: var(--amber-light);
}

.pain-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  font-weight: 300;
  max-width: 340px;
}

/* =============================================
   MECANISMO — CREAM, COMPARATIVO
   ============================================= */
.mechanism-section { background: var(--cream); }

.mech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mech-text h2 { color: var(--ink); }

.comparison-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-col {
  padding: 32px 28px;
}
.comp-col.bad {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.comparison-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.comp-col {
  padding: 28px 28px 32px;
}
.comp-col.bad {
  background: rgba(180,40,40,.12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.comp-col.good {
  background: rgba(30,100,60,.15);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.comp-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bad-icon  { background: rgba(220,60,60,.2);  border: 1px solid rgba(220,60,60,.35);  color: #f08080; }
.good-icon { background: rgba(46,153,89,.2);  border: 1px solid rgba(46,153,89,.4);   color: #5de89a; }

.comp-platform {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
}
.comp-platform-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  font-weight: 400;
  letter-spacing: .04em;
  margin-top: 2px;
}
.green-label { color: #5de89a !important; }

.comp-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 22px;
}
.comp-desc strong { color: var(--white); font-weight: 600; }

.comp-intent-row { display: flex; flex-direction: column; gap: 8px; }
.comp-intent-label {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.intent-track {
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  height: 8px;
  position: relative;
}

.intent-fill {
  height: 100%;
  border-radius: 100px;
  position: relative;
  min-width: 18px;
}
.bad-fill  { background: linear-gradient(90deg, rgba(180,40,40,.6) 0%, #e06060 100%); }
.good-fill { background: linear-gradient(90deg, #2E9959 0%, #5de89a 100%); }

.intent-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  white-space: nowrap;
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
}
.bad-badge {
  background: #c04040;
  color: #fff;
  transform: translate(calc(100% + 8px), -50%);
}
.good-badge {
  background: var(--green-bright);
  color: var(--ink);
  transform: translate(calc(100% + 8px), -50%);
}

/* =============================================
   FLOW SECTION — DARK GREEN, PASSOS
   ============================================= */
.flow-section {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.flow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(46,153,89,.15) 0%, transparent 60%);
  pointer-events: none;
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  position: relative;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.flow-n {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}

.flow-icon {
  color: var(--green-bright);
  margin: 0 auto 16px;
  width: 32px;
}

.flow-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.flow-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  font-weight: 300;
  max-width: 220px;
  margin: 0 auto;
}

.flow-arrow {
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* =============================================
   IMAGENS — MECHANSIMO E OFERTA
   ============================================= */
.mech-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-top: 28px;
  aspect-ratio: 16/9;
  background: var(--green);
}
.mech-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.mech-photo:hover img { transform: scale(1.03); }
.mech-photo-label {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(12,15,10,.75);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
}

.founder-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.founder-photo-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid var(--green);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.founder-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.founder-info {
  display: flex; flex-direction: column; gap: 5px;
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.founder-title {
  font-size: .8rem;
  color: var(--green-mid);
  font-weight: 600;
  letter-spacing: .01em;
}
.founder-since {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

.guarantee-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(12,15,10,.2);
  flex-shrink: 0;
}
.guarantee-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =============================================
   METODOLOGIA — VERDE RICO + CARDS ELEVADOS
   ============================================= */
.method-section {
  background: var(--green);
  position: relative;
}
/* textura sutil de pontos */
.method-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.method-section .section-label { color: var(--amber-light); }
.method-section h2 { color: var(--white); margin-bottom: 12px; }
.method-section .section-sub-center { color: rgba(255,255,255,.55); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.method-pillar {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--amber);
  border-radius: 16px;
  padding: 36px 36px 44px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,.2), 0 -2px 0 rgba(212,135,15,.15);
  transition: transform .25s, box-shadow .25s;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  column-gap: 8px;
  align-items: start;
}
.method-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 -2px 0 rgba(212,135,15,.25);
}
.method-pillar::before { display: none; }

.pillar-num {
  grid-column: 1;
  grid-row: 1;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--amber);
  opacity: .7;
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 24px;
  letter-spacing: -3px;
}

.pillar-icon {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 24px;
  color: rgba(255,255,255,.5);
}
.pillar-icon svg { width: 38px; height: 38px; }

.method-pillar h3 {
  grid-column: 1 / 3;
  grid-row: 2;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.method-pillar > p {
  grid-column: 1 / 3;
  grid-row: 3;
  font-size: .875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 24px;
}

.pillar-list {
  grid-column: 1 / 3;
  grid-row: 4;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar-list li {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pillar-list li:first-child { padding-top: 0; }
.pillar-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 5px;
  opacity: .8;
}

.niches-row { display: flex; flex-wrap: wrap; gap: 8px; }
.niches-row span {
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
  transition: border-color .2s, color .2s;
}
.niches-row span:hover { border-color: var(--green); color: var(--green); }

/* =============================================
   GARANTIA — SHIELD SVG
   ============================================= */
.guarantee-shield {
  display: block;
  filter: drop-shadow(0 4px 16px rgba(12,15,10,.15));
}

/* =============================================
   COMO FUNCIONA — CREAM, TIMELINE + IMAGEM
   ============================================= */
.how-section { background: var(--cream); }

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.how-left .section-head { margin-bottom: 0; }

.how-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
}
.how-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.how-photo:hover img { transform: scale(1.03); }
.how-photo-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(12,15,10,.82);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: .01em;
}

.how-photo-sub {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
  gap: 0;
}
.hps-item { flex: 1; text-align: center; }
.hps-n {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.hps-l {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
.hps-div { width: 1px; height: 36px; background: var(--border); }

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  max-width: 100%;
}

.how-step {
  display: grid;
  grid-template-columns: 80px 28px 1fr;
  gap: 0 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream-dark);
  letter-spacing: -.04em;
  line-height: 1;
  padding-top: 4px;
  text-align: right;
}

.step-line {
  width: 1px;
  background: linear-gradient(to bottom, var(--amber) 0%, var(--border) 100%);
  min-height: 80px;
  margin: 8px auto 0;
  position: relative;
}
.step-line::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--amber);
}
.step-line.last {
  background: var(--border);
  min-height: 40px;
}

.step-body {
  padding: 0 0 40px 0;
}

.step-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -.01em;
  padding-top: 4px;
}

.step-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   GARANTIA — ÂMBAR TOTAL. O MOMENTO.
   ============================================= */
.guarantee-section {
  background: var(--amber);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.guarantee-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: 15%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(12,15,10,.06);
  pointer-events: none;
}

.guarantee-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 860px;
}

.guarantee-seal {
  color: rgba(12,15,10,.6);
  flex-shrink: 0;
  padding-top: 4px;
}

.guarantee-text .section-label { color: rgba(12,15,10,.5); }

.guarantee-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 18px;
}

.guarantee-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(12,15,10,.7);
  max-width: 600px;
}

.guarantee-text strong { color: var(--ink); font-weight: 700; }

/* =============================================
   OFERTA — BRANCO CLEAN NO CREAM
   ============================================= */
.offer-section { background: var(--cream); }

.offer-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: flex-start;
}

.offer-left h2 { color: var(--ink); margin-bottom: 16px; }
.offer-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 440px;
}
.offer-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--amber-pale);
  border: 1px solid rgba(212,135,15,.2);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.offer-highlight svg { flex-shrink: 0; color: var(--amber); margin-top: 2px; }

.offer-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 48px rgba(12,15,10,.1);
}

.offer-title {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}

.offer-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.offer-list {
  list-style: none;
  margin-bottom: 32px;
}
.offer-list li {
  padding: 12px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  font-weight: 400;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6L5 8.5L9.5 3.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.offer-fine { font-size: .75rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* =============================================
   FAQ — LAYOUT LADO A LADO
   ============================================= */
.faq-section { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq-head h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 12px; }
.faq-sub { font-size: .88rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

.faq-list { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; line-height: 1.4;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--green-mid); }

.faq-arr {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1.5px solid var(--border); border-radius: 50%;
  position: relative; transition: background .2s, border-color .2s, transform .3s;
}
.faq-arr::before, .faq-arr::after {
  content: ''; position: absolute;
  background: var(--muted); border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-arr::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-arr::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); transition: transform .25s; }
.faq-item.open .faq-arr { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-arr::before, .faq-item.open .faq-arr::after { background: white; }
.faq-item.open .faq-arr::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); font-size: .9rem; line-height: 1.85; font-weight: 300; max-width: 560px; }

/* =============================================
   CTA FINAL — ESCURO E ENORME
   ============================================= */
.final-cta-section {
  background: var(--ink);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-dots {
  position: absolute;
  bottom: -40px; left: -40px;
  color: rgba(255,255,255,.03);
  pointer-events: none;
}

.final-inner { position: relative; z-index: 1; }

.final-cta-section h2 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
  letter-spacing: -.03em;
}
.final-cta-section h2 em {
  font-style: italic;
  color: var(--amber-light);
}

.final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 48px;
  font-weight: 300;
}

.btn-final { font-size: .95rem; padding: 18px 40px; }
.final-fine { font-size: .76rem; color: rgba(255,255,255,.2); margin-top: 24px; letter-spacing: .02em; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #080B07; padding: 32px 0; }

.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45); font-size: .85rem;
  font-weight: 600; letter-spacing: .05em;
}
.footer-logo img { opacity: .45; filter: brightness(0) invert(1); }
.footer p { font-size: .76rem; color: rgba(255,255,255,.2); }

/* =============================================
   MOBILE FIRST — RESPONSIVE
   ============================================= */

/* Tablet e abaixo */
@media (max-width: 960px) {
  .section { padding: 80px 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }

  .mech-layout { grid-template-columns: 1fr; gap: 48px; }
  .how-layout { grid-template-columns: 1fr; gap: 48px; }
  .how-right { max-width: 520px; }
  .how-photo { aspect-ratio: 4/5; }

  .method-grid { grid-template-columns: 1fr; gap: 16px; }
  .method-pillar { padding: 32px 28px 40px; }
  .pillar-num { font-size: 3.5rem; }

  .offer-wrap { grid-template-columns: 1fr; gap: 48px; }
  .offer-box { max-width: 520px; }

  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-head { max-width: 480px; }

  .guarantee-inner { grid-template-columns: 1fr; gap: 32px; }
  .guarantee-seal { display: flex; justify-content: center; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }

  .nav-inner { height: 54px; }
  .nav-logo span { display: none; }

  .hero { padding: 60px 0 72px; }
  .hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-sub { font-size: .95rem; }

  .gcard-stats { padding: 14px 16px; }
  .gcs-n { font-size: 1.1rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; padding: 36px 28px; }
  .pain-cell:last-child { border-bottom: none !important; }
  .pain-ghost { font-size: 5rem; }
  .pain-title { font-size: 1.35rem; }

  .flow-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .flow-arrow { transform: rotate(90deg); align-self: center; }
  .flow-step { padding: 0; }

  .how-step { grid-template-columns: 52px 22px 1fr; gap: 0 16px; }
  .step-num { font-size: 2rem; }

  .guarantee-section { padding: 72px 0; }
  .guarantee-text h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .offer-wrap { grid-template-columns: 1fr; }
  .offer-box { padding: 32px 22px; }
  .offer-left { order: 2; }
  .offer-box { order: 1; }

  .final-cta-section { padding: 80px 0; }
  .final-cta-section h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .btn-final { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.75rem; }
  .btn-primary { font-size: .85rem; padding: 14px 22px; }
}
