/* ──────────────────────────────────────────────────────────────────
   Modê — Landing
   Editorial / Magazine. Paper × Ink × Terracotta.
   ────────────────────────────────────────────────────────────────── */

:root {
  /* Identidade landing — Oliva protagonista (oliva × marrom claro × preto × branco) */
  --paper: #F8F6F0;
  --paper-2: #E5DAC6;
  --canvas: #FFFFFF;
  --ink: #141414;
  --ink-2: #57513F;
  --ink-3: #8C8475;
  --rule: #141414;
  --rule-soft: #D9CCB4;
  --accent: #5C6638;
  --accent-2: #474F2A;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;

  --container: 1380px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --rule-w: 1px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--ink); color: var(--paper); }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* Editorial label */
.meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.meta--ink { color: var(--ink); }
.meta--accent { color: var(--accent); }

/* ────────────────────────────  NAV  ──────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 246, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--rule-w) solid var(--rule);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); background: rgba(248, 246, 240, 0.96); }

.nav-inner {
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo::after { content: "®"; font-size: 0.62rem; vertical-align: super; font-style: normal; margin-left: 0.15em; color: var(--ink-2); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.25rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1.5rem; }
.nav-login {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav-login:hover { border-bottom-color: var(--ink); }

.btn-nav {
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-nav:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-nav.full { width: 100%; justify-content: center; }

.nav-burger {
  display: none;
  width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform 0.2s; }

.nav-mobile {
  display: none;
  padding: 1.5rem var(--gutter) 2rem;
  background: var(--paper);
  border-top: var(--rule-w) solid var(--rule);
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile a { font-size: 1.1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--rule-soft); }
.nav-mobile-divider { height: 1px; background: var(--rule); margin: 0.5rem 0; }
.nav-mobile-login { font-weight: 500; }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-mobile { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ────────────────────────────  HERO  ──────────────────────────── */
.hero {
  padding: 130px 0 0;
  border-bottom: var(--rule-w) solid var(--rule);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding-bottom: 4rem;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-h1 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(3rem, 8.5vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin-bottom: 2rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 320;
}
.hero-h1 .small {
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 0.4em;
  color: var(--ink-2);
  font-family: var(--sans);
  font-style: normal;
  line-height: 1.3;
  max-width: 22ch;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-cta { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.8rem;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: background 0.2s, transform 0.2s, gap 0.2s;
}
.btn-primary:hover { background: var(--accent-2); gap: 0.85rem; }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(2px); }
.btn-primary.lg { padding: 1.1rem 2rem; font-size: 0.95rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* Hero image — editorial portrait placeholder */
.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: var(--rule-w) solid var(--rule);
  overflow: hidden;
}
.hero-image-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(92, 102, 56, 0.20), transparent 50%),
    radial-gradient(ellipse at 70% 75%, rgba(140, 132, 120, 0.30), transparent 60%),
    linear-gradient(140deg, var(--paper-2), var(--paper));
}
.hero-image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(20, 20, 20, 0.025) 0 2px, transparent 2px 6px);
  mix-blend-mode: multiply;
}
.hero-image-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem;
  color: var(--ink);
  z-index: 2;
}
.hero-image-overlay-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hero-image-overlay-bottom { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-image-overlay .ed-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  font-weight: 300;
  line-height: 0.85;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-image-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
  max-width: 18ch;
}

/* Quando a imagem real está visível, inverter o texto do overlay para claro
   e adicionar scrims gradientes para legibilidade sobre imagem escura. */
.hero-image-frame:has(img.hero-image:not([style*="display: none"]))::before {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.6) 100%);
  mix-blend-mode: normal;
  opacity: 1;
  z-index: 1;
}
.hero-image-frame:has(img.hero-image:not([style*="display: none"])) .hero-image-overlay,
.hero-image-frame:has(img.hero-image:not([style*="display: none"])) .hero-image-overlay .ed-num {
  color: var(--paper);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-image-frame:has(img.hero-image:not([style*="display: none"])) .hero-image-overlay .meta--ink {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  text-shadow: none;
}

.hero-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: end;
  gap: 0;
  border-top: var(--rule-w) solid var(--rule);
  margin: 0 calc(-1 * var(--gutter));
  width: calc(100% + 2 * var(--gutter));
}
.hero-band > div {
  padding: 1.5rem var(--gutter);
  border-right: var(--rule-w) solid var(--rule);
}
.hero-band > div:last-child { border-right: none; }
.hero-band .meta { display: block; margin-bottom: 0.4rem; }
.hero-band strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; letter-spacing: -0.01em; font-variation-settings: "opsz" 144, "SOFT" 30; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero-band { grid-template-columns: 1fr 1fr; }
  .hero-band > div { padding: 1rem 1.25rem; font-size: 0.9rem; border-bottom: var(--rule-w) solid var(--rule); }
  .hero-band > div:nth-child(2) { border-right: none; }
  .hero-band > div:nth-child(3), .hero-band > div:nth-child(4) { border-bottom: none; }
  .hero-image-overlay .ed-num { font-size: 3.5rem; }
}

/* ──────────────────────────── MARQUEE STRIP ──────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  border-bottom: var(--rule-w) solid var(--rule);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 360;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
.marquee-track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: 1rem; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────────────────────── SECTION HEAD ──────────────────────────── */
section { position: relative; }

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: var(--rule-w) solid var(--rule);
}

.section-head {
  display: grid;
  grid-template-columns: 0.5fr 1.4fr 0.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 5rem;
}
.section-head .meta { padding-top: 0.6rem; }
.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 320; font-variation-settings: "opsz" 144, "SOFT" 100; }
.section-sub {
  align-self: end;
  font-size: 0.92rem;
  color: var(--ink-2);
  max-width: 30ch;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
}

/* ──────────────────────────── MANIFESTO ──────────────────────────── */
.manifesto {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--accent);
  color: #F6F3E9;
  border-bottom: var(--rule-w) solid var(--rule);
  text-align: center;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 320;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  max-width: 22ch;
  margin: 0 auto;
}
.manifesto-quote em { font-style: italic; color: #D9C9A8; font-variation-settings: "opsz" 144, "SOFT" 100; }
.manifesto-credit {
  margin-top: 3rem;
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246, 243, 233, 0.7);
}
.manifesto-credit::before, .manifesto-credit::after {
  content: ""; display: block; width: 30px; height: 1px; background: var(--ink);
}

/* ──────────────────────────── FEATURES GRID ──────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: var(--rule-w) solid var(--rule);
  border-left: var(--rule-w) solid var(--rule);
  margin: 0 calc(-1 * var(--gutter));
  width: calc(100% + 2 * var(--gutter));
}

.feature {
  grid-column: span 6;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: var(--rule-w) solid var(--rule);
  border-bottom: var(--rule-w) solid var(--rule);
  position: relative;
  transition: background 0.3s;
  min-height: 380px;
  display: flex; flex-direction: column;
}
.feature:hover { background: var(--paper-2); }

.feature.is-tall { grid-row: span 2; min-height: 800px; }
.feature.is-wide { grid-column: span 8; }
.feature.is-narrow { grid-column: span 4; }

.feature-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.feature-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 380;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.feature-title em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 100; }
.feature-body {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 40ch;
}
.feature-list { list-style: none; margin-top: auto; padding-top: 2rem; }
.feature-list li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.6rem 0;
  border-top: 1px solid var(--rule-soft);
  display: flex; gap: 0.7rem; align-items: center;
}
.feature-list li::before { content: "→"; color: var(--accent); font-family: var(--sans); font-size: 0.85rem; }

.feature-vis {
  margin-top: 2rem;
  flex: 1;
  background: var(--canvas);
  border: 1px solid var(--rule-soft);
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.feature-vis.terracotta { background: var(--accent); color: var(--paper); }
.feature-vis.ink { background: var(--ink); color: var(--paper); }
.feature-vis.paper { background: var(--paper-2); }

.feature-vis-content {
  position: absolute; inset: 0;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.feature-vis .big-num {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 320;
  line-height: 0.85;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.feature-vis .ed-cap { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }

/* WhatsApp simulator inside feature-vis */
.wa-sim {
  background: var(--canvas);
  position: absolute; inset: 0;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.85rem;
  justify-content: flex-end;
}
.wa-line {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  max-width: 78%;
  line-height: 1.4;
  font-size: 0.82rem;
}
.wa-line.in { align-self: flex-start; background: var(--paper); color: var(--ink); border-bottom-left-radius: 4px; }
.wa-line.out { align-self: flex-end; background: var(--accent); color: var(--paper); border-bottom-right-radius: 4px; }

@media (max-width: 880px) {
  .feature, .feature.is-tall, .feature.is-wide, .feature.is-narrow { grid-column: span 12; grid-row: auto; min-height: 320px; }
}

/* ──────────────────────────── PROCESSO 3 PASSOS ──────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule-w) solid var(--rule);
  margin: 0 calc(-1 * var(--gutter));
  width: calc(100% + 2 * var(--gutter));
}
.process-step {
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 3vw, 3rem);
  border-right: var(--rule-w) solid var(--rule);
  position: relative;
  min-height: 480px;
  display: flex; flex-direction: column;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
  color: var(--accent);
  line-height: 0.85;
  margin-bottom: 1.5rem;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.process-step-body {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}
.process-step-tag {
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: var(--rule-w) solid var(--rule); min-height: 280px; }
  .process-step:last-child { border-bottom: none; }
}

/* ──────────────────────────── PRICING ──────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule-w) solid var(--rule);
  border-left: var(--rule-w) solid var(--rule);
  margin: 0 calc(-1 * var(--gutter));
  width: calc(100% + 2 * var(--gutter));
}
.price-card {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 3vw, 3rem);
  border-right: var(--rule-w) solid var(--rule);
  border-bottom: var(--rule-w) solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
  background: var(--paper);
  transition: background 0.3s;
}
.price-card:hover { background: var(--paper-2); }
.price-card.featured { background: var(--ink); color: var(--paper); }
.price-card.featured:hover { background: var(--ink); }

.price-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}
.price-card.featured .price-tag { color: var(--accent); }

.price-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.price-name em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--accent); }

.price-amount {
  display: flex; align-items: baseline; gap: 0.4rem;
  font-family: var(--serif);
  margin: 1.5rem 0 0.4rem;
}
.price-amount .currency { font-size: 1.2rem; color: var(--ink-2); }
.price-amount .num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 320;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.price-amount .per { font-size: 0.85rem; color: var(--ink-2); margin-left: 0.4rem; font-family: var(--sans); }
.price-card.featured .price-amount .currency,
.price-card.featured .price-amount .per { color: var(--ink-3); }

.price-desc { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 2rem; }
.price-card.featured .price-desc { color: var(--ink-3); }

.price-features { list-style: none; flex: 1; }
.price-features li {
  font-size: 0.88rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rule-soft);
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--ink);
}
.price-card.featured .price-features li { color: var(--paper); border-top-color: rgba(255, 255, 255, 0.12); }
.price-features li::before { content: "✓"; color: var(--accent); font-family: var(--serif); font-size: 0.9rem; }

.price-card .btn-primary { margin-top: 2.5rem; justify-content: center; }
.price-card.featured .btn-primary { background: var(--accent); }
.price-card.featured .btn-primary:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 880px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ──────────────────────────── FAQ ──────────────────────────── */
.faq {
  border-top: var(--rule-w) solid var(--rule);
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: var(--rule-w) solid var(--rule);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: start;
  gap: 2rem;
  list-style: none;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.faq-q em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 100; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
  margin-top: 1rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 65ch;
}

/* ──────────────────────────── CTA STRIP ──────────────────────────── */
.cta-strip {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  border-bottom: var(--rule-w) solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.cta-strip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-strip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.15) contrast(1.05);
}
.cta-strip-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.85) 100%);
}
.cta-strip > .container { position: relative; z-index: 1; }
.cta-strip .meta { color: var(--accent); margin-bottom: 1.5rem; }
.cta-strip-h {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 360;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.cta-strip-h em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "SOFT" 100; }
.cta-strip .btn-primary { background: var(--accent); color: var(--paper); }
.cta-strip .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* ──────────────────────────── FOOTER ──────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-soft);
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-2);
  max-width: 28ch;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--ink-2);
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { padding: 0.3rem 0; }
.footer ul a { font-size: 0.92rem; color: var(--ink); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.footer ul a:hover { border-bottom-color: var(--ink); }

.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

/* ──────────────────────────── REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.reveal.up    { transform: translateY(28px); }
.reveal.left  { transform: translateX(-36px); }
.reveal.right { transform: translateX(36px); }
.reveal:not(.up):not(.left):not(.right) { transform: translateY(20px); }
.reveal.in { opacity: 1; transform: translate(0, 0) !important; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ──────────────────────────── HERO IMAGE REAL ──────────────────────────── */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.92) contrast(1.02);
}
.hero-image-frame:has(img.hero-image:not([style*="display: none"]))::before,
.hero-image-frame:has(img.hero-image:not([style*="display: none"]))::after {
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.hero-microcopy {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

/* ──────────────────────────── PAIN SECTION ──────────────────────────── */
.pain-section { padding-top: 5rem; padding-bottom: 5rem; }
.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.pain-left .section-title { margin-top: 1rem; margin-bottom: 1.75rem; }
.pain-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  max-width: 52ch;
}
.pain-body strong { color: var(--ink); font-weight: 600; }
.pain-right {
  display: grid;
  gap: 1.25rem;
}
.pain-card {
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--paper);
  border: var(--rule-w) solid var(--rule);
}
.pain-card--win {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pain-card--win .ed-cap { color: var(--ink-3); }
.pain-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pain-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.45;
}
.pain-list--red li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pain-list--green li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--paper);
  font-weight: 700;
}
@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ──────────────────────────── WA SIM POLISH ──────────────────────────── */
.wa-meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ──────────────────────────── TESTIMONIAL ──────────────────────────── */
.testimonial-section {
  padding-top: 5rem; padding-bottom: 5rem;
  background: var(--paper-2);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.testimonial-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(140deg, var(--paper), var(--canvas));
  border: var(--rule-w) solid var(--rule);
  overflow: hidden;
  position: relative;
}
.testimonial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.testimonial-image.img-fallback img { display: none; }
.testimonial-image.img-fallback::after {
  content: "Depoimento";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--ink-3);
  font-size: 1.5rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testimonial-quote em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-author strong { font-family: var(--sans); font-size: 1rem; font-weight: 600; }
.testimonial-author span {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ──────────────────────────── PRICING FOOT ──────────────────────────── */
.pricing-foot {
  margin-top: 3rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-2);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.pricing-foot strong { color: var(--ink); font-weight: 600; }

/* ──────────────────────────── TRUST STRIP ──────────────────────────── */
.trust-section { padding-top: 4rem; padding-bottom: 4rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--rule-w) solid var(--rule);
}
.trust-item {
  padding: 2rem 1.5rem;
  border-right: var(--rule-w) solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; line-height: 1; margin-bottom: 0.5rem; }
.trust-item strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.01em;
}
.trust-item p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: var(--rule-w) solid var(--rule); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
}

/* ──────────────────────────── CTA STRIP MICROCOPY ──────────────────────────── */
.cta-strip-microcopy {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ════════════════════════════ ANIMAÇÕES ════════════════════════════ */

/* ─── Pulse no CTA do nav ─── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92, 102, 56, 0.0); }
  50%      { box-shadow: 0 0 0 8px rgba(92, 102, 56, 0.18); }
}
.btn-nav.pulse { animation: ctaPulse 2.2s ease-in-out infinite; }

/* ─── Shine sweep no botão primário ─── */
.btn-primary.shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary.shine::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.btn-primary.shine > * { position: relative; z-index: 1; }
@keyframes shineSweep {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ─── Hero tag dot pulse (já existe, polimento) ─── */
.hero-tag-dot {
  box-shadow: 0 0 0 0 rgba(92, 102, 56, 0.6);
  animation: pulse-dot 2s ease-in-out infinite, dotRing 2s ease-out infinite;
}
@keyframes dotRing {
  0%   { box-shadow: 0 0 0 0 rgba(92, 102, 56, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(92, 102, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 102, 56, 0); }
}

/* ─── Badge pulse (+R$ 328 no hero overlay) ─── */
.badge-pulse {
  background: var(--accent);
  color: var(--paper) !important;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  animation: badgeBounce 2.6s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.04); }
}

/* ─── Big number pulse sutil ─── */
.pulse-num {
  display: inline-block;
  animation: pulseNum 2.4s ease-in-out infinite;
}
@keyframes pulseNum {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.78; transform: scale(0.985); }
}

/* ─── Marquee com fade nas pontas ─── */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

/* ─── Feature hover ─── */
.feature {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.35s cubic-bezier(.2,.7,.2,1),
              background 0.25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(20, 20, 20, 0.25);
  z-index: 2;
}
.feature-title em {
  background-image: linear-gradient(180deg, transparent 70%, rgba(92, 102, 56, 0.18) 70%);
  background-size: 100% 100%;
  padding: 0 0.05em;
}

/* ─── Pricing card hover ─── */
.price-card {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.35s cubic-bezier(.2,.7,.2,1),
              background 0.25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(20, 20, 20, 0.35);
}
.price-card.featured {
  position: relative;
}
.price-card.featured::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid var(--accent);
  pointer-events: none;
  opacity: 0;
  animation: featuredGlow 3.2s ease-in-out infinite;
}
@keyframes featuredGlow {
  0%, 100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* ─── Trust icon bounce no hover ─── */
.trust-item { transition: background 0.25s ease; }
.trust-item:hover { background: var(--paper-2); }
.trust-item:hover .trust-icon { animation: trustBounce 0.6s ease; }
@keyframes trustBounce {
  0%   { transform: translateY(0) scale(1); }
  40%  { transform: translateY(-8px) scale(1.15); }
  100% { transform: translateY(0) scale(1); }
}

/* ─── WhatsApp chat - animação de typing e bubble pop ─── */
.wa-sim {
  scroll-behavior: smooth;
  max-height: 320px;
  overflow-y: auto;
}
.wa-line.wa-pop {
  animation: bubblePop 0.32s cubic-bezier(.2,.7,.2,1.2);
  transform-origin: bottom;
}
.wa-line.in.wa-pop  { transform-origin: bottom left; }
.wa-line.out.wa-pop { transform-origin: bottom right; }
@keyframes bubblePop {
  0%   { opacity: 0; transform: translateY(8px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(0)   scale(1.02); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}

.wa-typing {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 10px 14px !important;
  background: var(--accent) !important;
  border-radius: 18px 18px 4px 18px !important;
  align-self: flex-end;
}
.wa-typing span {
  width: 6px; height: 6px;
  background: var(--paper);
  border-radius: 50%;
  opacity: 0.55;
  animation: typingDot 1.2s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.18s; }
.wa-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.55; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* ─── Toast flutuante de prova social ─── */
.sale-toast {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem 0.85rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 14px 40px -18px rgba(20, 20, 20, 0.35);
  max-width: 320px;
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 0.45s cubic-bezier(.2,.7,.2,1),
              transform 0.55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.sale-toast.show {
  opacity: 1;
  transform: translateX(0);
}
.sale-toast-dot {
  width: 10px; height: 10px;
  background: #5C6638;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(92, 102, 56, 0.6);
  animation: dotRingGreen 1.8s ease-out infinite;
}
@keyframes dotRingGreen {
  0%   { box-shadow: 0 0 0 0 rgba(92, 102, 56, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(92, 102, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 102, 56, 0); }
}
.sale-toast-text { display: flex; flex-direction: column; gap: 0.15rem; }
.sale-toast-text strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.sale-toast-text span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
@media (max-width: 600px) {
  .sale-toast { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; max-width: none; }
}

/* ─── Hero image transition para parallax ─── */
.hero-image {
  transition: transform 0.2s linear;
  will-change: transform;
}

/* ─── Manifesto: em itálico fica destacado com underline animado ─── */
.manifesto-quote em {
  position: relative;
  display: inline-block;
}

/* ─── Process step number: rotate sutil no hover ─── */
.process-step {
  transition: transform 0.3s ease;
}
.process-step:hover { transform: translateY(-3px); }
.process-step-num {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.process-step:hover .process-step-num { transform: scale(1.08) rotate(-3deg); }

/* ─── Hero band stat hover ─── */
.hero-band > div {
  transition: background 0.25s ease;
}
.hero-band > div:hover {
  background: var(--paper-2);
}

/* ─── Respeitar reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {
  .btn-nav.pulse,
  .btn-primary.shine::before,
  .hero-tag-dot,
  .badge-pulse,
  .pulse-num,
  .price-card.featured::after,
  .sale-toast-dot,
  .wa-typing span {
    animation: none !important;
  }
  .sale-toast { display: none !important; }
  .hero-image { transform: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   IVL POLISH v1 — Textura (grão), dimensão e barra preta
   Anexado por último: vence o cascade sobre as regras acima.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --grain: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='140'%20height='140'%3E%3Cfilter%20id='g'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.8'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='saturate'%20values='0'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ── 1. Grão global — textura de papel sobre a página toda ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

/* ── 2. Grão + dimensão (brilho de topo) nos blocos de cor ── */
.manifesto {
  background-color: var(--accent);
  background-image:
    radial-gradient(150% 110% at 50% -25%, rgba(255,255,255,0.16), rgba(255,255,255,0) 55%),
    var(--grain);
  background-size: auto, 200px 200px;
  background-blend-mode: screen, overlay;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.14);
}
.pain-card--win,
.price-card.featured {
  background-color: var(--ink);
  background-image:
    radial-gradient(140% 120% at 50% -20%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%),
    var(--grain);
  background-size: auto, 180px 180px;
  background-blend-mode: screen, overlay;
}
.feature-vis.terracotta {
  background-color: var(--accent);
  background-image:
    radial-gradient(140% 120% at 50% -20%, rgba(255,255,255,0.15), rgba(255,255,255,0) 60%),
    var(--grain);
  background-size: auto, 160px 160px;
  background-blend-mode: screen, overlay;
}
.feature-vis.ink {
  background-color: var(--ink);
  background-image:
    radial-gradient(140% 120% at 50% -20%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%),
    var(--grain);
  background-size: auto, 160px 160px;
  background-blend-mode: screen, overlay;
}

/* ── 3. Dimensão — recessos e elevações (sem quebrar o grid chapado) ── */
.feature-vis { box-shadow: inset 0 2px 10px rgba(20,18,12,0.07); }

/* Hero: imagem com sombra + moldura oliva deslocada atrás (camada editorial) */
.hero-right { position: relative; }
.hero-right::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}
.hero-image-frame {
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px -44px rgba(20,18,12,0.6);
}

/* Depoimento: foto elevada */
.testimonial-image {
  position: relative;
  box-shadow: 0 34px 70px -40px rgba(20,18,12,0.55);
}

/* Botões com leve elevação oliva */
.btn-primary, .btn-nav {
  box-shadow: 0 10px 24px -14px rgba(92,102,56,0.85);
}
.btn-primary:hover, .btn-nav:hover {
  box-shadow: 0 16px 30px -14px rgba(92,102,56,1);
}
.price-card.featured .btn-primary { box-shadow: 0 12px 26px -12px rgba(0,0,0,0.5); }

/* ── 4. Barra preta no topo (assinatura IVL) ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: 38px;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.topbar .tb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.topbar .tb-sep { opacity: 0.4; }
.nav { top: 38px; }
.hero { padding-top: 170px; }

/* ── Hero: bloco de texto proporcional à imagem + fonte Playfair Display ── */
.hero-left {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-desc { margin-top: 1.5rem; }
.hero-h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-variation-settings: normal;
  font-weight: 500;
  font-size: clamp(2.2rem, 5.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero-h1 em {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-variation-settings: normal;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 880px) {
  .topbar { font-size: 0.55rem; letter-spacing: 0.14em; gap: 0.6rem; }
  .topbar .tb-sep { display: none; }
}
