/* ============================================================
   Adriana Bastos — Landing Page Única
   Design tokens & global styles
   ============================================================ */

:root {
  /* Chocolate & Champagne (Default — matches IG aesthetic) */
  --bg: #F3E7CE;
  --bg-warm: #ECDDC0;
  --paper: #FBF4E2;
  --cream: #F8EFD9;
  --espresso: #2B1810;
  --espresso-2: #3A2418;
  --espresso-3: #4E3320;
  --ink: #1A0F08;
  --ink-soft: #4A2F1F;
  --gold: #C9A35B;
  --gold-bright: #E6C988;
  --gold-deep: #8C6A2E;
  --blush: #C97E63;

  /* Vibrant sales accent — terracotta/coral */
  --accent: #D9532E;
  --accent-hot: #EE6539;
  --accent-deep: #A33A1E;
  --accent-soft: #F4D5C5;

  --rule: rgba(43, 24, 16, 0.18);
  --rule-soft: rgba(43, 24, 16, 0.10);

  /* Type */
  --serif: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --serif-text: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --max: 1280px;
  --max-narrow: 980px;
  --gutter: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--espresso);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--espresso);
}

/* ---------- Containers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
.serif {
  font-family: var(--serif);
  font-weight: 400;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.text-serif {
  font-family: var(--serif-text);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.eyebrow.gold {
  color: var(--gold-deep);
}

.eyebrow.gold::before {
  background: var(--gold);
}

.eyebrow.on-dark {
  color: var(--gold-bright);
}

.eyebrow.on-dark::before {
  background: var(--gold);
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin: 0;
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

.h-card {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  margin: 0;
}

.lede {
  font-family: var(--serif-text);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
}

.body-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.italic-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.on-dark .italic-accent,
section.dark .italic-accent {
  color: var(--gold-bright);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
  box-shadow: 0 14px 30px -10px rgba(217, 83, 46, 0.55);
}

.btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(217, 83, 46, 0.7);
}

.btn-primary.pulse {
  position: relative;
}

.btn-primary.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(201, 163, 91, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--rule);
}

.btn-ghost:hover {
  border-color: var(--espresso);
  background: rgba(43, 24, 16, 0.04);
}

section.dark .btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25);
}

section.dark .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
}

.btn .arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(243, 231, 206, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--espresso);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 600px) {
  .nav-brand {
    font-size: 24px;
  }
}

.nav-brand .mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--espresso);
}

.nav-cta {
  font-size: 12px !important;
  padding: 12px 20px !important;
}

@media (max-width: 820px) {
  /* base reset only — full nav rules live in mobile-first refinements below */
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 600px at 100% 0%, rgba(201, 163, 91, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 500px at 0% 100%, rgba(43, 24, 16, 0.06), transparent 60%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 .gold-italic {
  font-style: italic;
  color: var(--gold-deep);
  display: inline-block;
}

.hero-lede {
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  max-width: 560px;
}

.hero-stat .n {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  color: var(--espresso);
}

.hero-stat .n .plus {
  color: var(--accent);
}

.hero-stat .l {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* Hero photo composition */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}

.hero-photo .frame-bg {
  position: absolute;
  inset: 24px -24px -24px 24px;
  background:
    linear-gradient(135deg, var(--espresso) 0%, var(--espresso-2) 100%);
  border-radius: 4px;
}

.hero-photo .gold-arc {
  position: absolute;
  inset: -20px -20px auto auto;
  width: 70%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
}

.hero-photo .gold-arc::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 163, 91, 0.4);
  border-radius: 50%;
}

.hero-photo image-slot,
.hero-photo .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(43, 24, 16, 0.25));
}

.hero-photo .badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--accent);
  color: #FFF;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 22px 50px -16px rgba(217, 83, 46, 0.65);
  z-index: 3;
  transform: rotate(-2deg);
}

.hero-photo .badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1);
  }
}

.hero-photo .badge .t {
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 0.02em;
}

.hero-photo .badge .t b {
  color: #FFF;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-photo .frame-bg {
    inset: 16px -12px -16px 12px;
  }
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.quote-band::before {
  top: 32px;
}

.quote-band::after {
  bottom: 32px;
}

.quote-band q {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.35;
  display: block;
  max-width: 900px;
  margin: 0 auto;
  quotes: none;
}

.quote-band q::before,
.quote-band q::after {
  content: "";
}

.quote-band .source {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Section base ---------- */
section.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

section.dark {
  background: var(--espresso);
  color: var(--cream);
}

section.dark .h-section,
section.dark .h-card,
section.dark .h-display {
  color: var(--cream);
}

section.dark .body-text {
  color: rgba(248, 239, 217, 0.78);
}

section.dark .lede {
  color: rgba(248, 239, 217, 0.88);
}

section.cream {
  background: var(--paper);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
}

.about-photo .gold-line {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 60%;
  height: 60%;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.about-photo .gold-line.bl {
  inset: auto auto -16px -16px;
  border-top: none;
  border-right: none;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.about-photo image-slot,
.about-photo .about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.about-text h2 {
  margin-bottom: 28px;
}

.about-text .lede {
  margin-bottom: 28px;
}

.about-text p+p {
  margin-top: 20px;
}

.about-text .signature {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.about-text .signature .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--espresso);
}

.about-text .signature .role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    position: static;
    max-width: 420px;
  }
}

/* ---------- Padrão Disney section ---------- */
.disney-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: 96px;
}

.disney-hero h2 {
  margin: 22px 0 28px;
}

.disney-hero h2 .mark {
  font-style: italic;
  color: var(--gold-bright);
}

.disney-hero .lede {
  max-width: 540px;
}

/* ---------- Disney Seal (elegant centerpiece) ---------- */
.disney-seal {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.disney-seal .seal-ring {
  position: absolute;
  border-radius: 50%;
}

.disney-seal .seal-ring.outer {
  inset: 0;
  border: 1px solid rgba(201, 163, 91, 0.35);
  animation: rotate-cw 60s linear infinite;
}

.disney-seal .seal-ring.outer::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.18);
}

.disney-seal .seal-ring.inner {
  inset: 22%;
  border: 1px dashed rgba(201, 163, 91, 0.4);
}

.disney-seal .seal-ring.inner::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.18);
}

.disney-seal .seal-text {
  width: 100%;
  height: 100%;
  display: block;
}

.disney-seal .seal-orbit {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  fill: var(--gold);
}

/* Decorative stars around outer ring */
.disney-seal .seal-stars {
  position: absolute;
  inset: 8%;
  pointer-events: none;
}

.disney-seal .seal-stars span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  top: 50%;
  left: 50%;
  box-shadow: 0 0 8px rgba(230, 201, 136, 0.6);
}

.disney-seal .seal-stars span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-50%) translateY(8px);
}

.disney-seal .seal-stars span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(72deg) translateY(-50%) translateY(8px);
}

.disney-seal .seal-stars span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(144deg) translateY(-50%) translateY(8px);
}

.disney-seal .seal-stars span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(216deg) translateY(-50%) translateY(8px);
}

.disney-seal .seal-stars span:nth-child(5) {
  transform: translate(-50%, -50%) rotate(288deg) translateY(-50%) translateY(8px);
}

.disney-seal .seal-core {
  position: relative;
  z-index: 2;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--espresso-3), var(--espresso) 65%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8%;
  box-shadow:
    inset 0 0 0 1px rgba(201, 163, 91, 0.4),
    inset 0 0 30px rgba(201, 163, 91, 0.08),
    0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

.disney-seal .seal-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.disney-seal .seal-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
  color: var(--cream);
}

.disney-seal .seal-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.disney-seal .seal-ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold);
}

.disney-seal .seal-ornament span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.disney-seal .seal-ornament span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

@keyframes rotate-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .disney-hero {
    grid-template-columns: 1fr;
  }

  .disney-seal {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .disney-seal {
    max-width: 340px;
  }

  .disney-seal .seal-orbit {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  .disney-seal .seal-label {
    font-size: 9px;
    letter-spacing: 0.24em;
    margin-bottom: 10px;
  }

  .disney-seal .seal-title {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .disney-seal {
    max-width: 280px;
  }

  .disney-seal .seal-orbit {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .disney-seal .seal-title {
    font-size: 19px;
  }
}

/* Pilares grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 1px;
  background: rgba(201, 163, 91, 0.18);
  border: 1px solid rgba(201, 163, 91, 0.18);
}

.pillar {
  background: var(--espresso);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s ease;
  position: relative;
}

.pillar:hover {
  background: var(--espresso-2);
}

.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent-hot);
  letter-spacing: 0.04em;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
  line-height: 1.1;
}

.pillar h3 .it {
  font-style: italic;
  color: var(--gold-bright);
}

.pillar p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(248, 239, 217, 0.7);
  margin: 0;
}

@media (max-width: 1000px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar:nth-child(5) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SALES PAGE COMPONENTS
   ============================================================ */

/* ---------- Tag / chip ---------- */
.sales-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sales-chip .ic {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* ---------- Para quem é (two columns) ---------- */
.para-quem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(43, 24, 16, 0.12);
  margin-top: 56px;
  border: 1px solid rgba(43, 24, 16, 0.12);
}

.pq-col {
  background: var(--paper);
  padding: 48px 40px;
}

.pq-col.no {
  background: var(--espresso);
  color: var(--cream);
}

.pq-col h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 400;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pq-col .yes-icon,
.pq-col .no-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.pq-col .yes-icon {
  background: var(--accent);
  color: #FFF;
}

.pq-col .no-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pq-col .sub {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 0 0 28px;
  padding-left: 50px;
}

.pq-col.no .sub {
  color: rgba(248, 239, 217, 0.6);
}

.pq-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pq-col ul li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--espresso);
}

.pq-col.no ul li {
  color: rgba(248, 239, 217, 0.85);
}

.pq-col ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.pq-col.yes ul li::before {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2,6 5,9 10,3'/></svg>");
}

.pq-col.no ul li::before {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23E6C988' stroke-width='2' stroke-linecap='round'><line x1='3' y1='3' x2='9' y2='9'/><line x1='9' y1='3' x2='3' y2='9'/></svg>");
}

@media (max-width: 800px) {
  .para-quem {
    grid-template-columns: 1fr;
  }
}

/* ---------- Como funciona — 3 steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 18px);
  opacity: 0.4;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.step .circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 400;
  box-shadow: 0 18px 36px -12px rgba(217, 83, 46, 0.55);
  border: 4px solid var(--bg);
}

.step:nth-child(2) .circle {
  background: var(--espresso);
  box-shadow: 0 18px 36px -12px rgba(43, 24, 16, 0.5);
}

.step:nth-child(3) .circle {
  background: var(--gold);
  color: var(--espresso);
  box-shadow: 0 18px 36px -12px rgba(201, 163, 91, 0.55);
}

.step h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--espresso);
  line-height: 1.1;
}

.step h3 .it {
  font-style: italic;
  color: var(--accent-deep);
}

.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 880px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
}

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

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--espresso);
  line-height: 1.2;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent-deep);
}

.faq-item .answer {
  padding: 0 0 32px;
  font-family: var(--serif-text);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ---------- Guarantee strip ---------- */
.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(238, 101, 57, 0.6);
  padding: 18px 28px;
  border-radius: 999px;
  margin-bottom: 36px;
}

.guarantee .seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(217, 83, 46, 0.18);
}

.guarantee .gt {
  text-align: left;
}

.guarantee .gt b {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #FFF;
  margin-bottom: 2px;
}

.guarantee .gt span {
  font-size: 12px;
  color: rgba(248, 239, 217, 0.7);
  letter-spacing: 0.04em;
}

/* ---------- Urgency mini-bar (above nav) ---------- */
.urgency-bar {
  background: var(--accent);
  color: #FFF;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
}

.urgency-bar b {
  font-weight: 800;
}

.urgency-bar .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFF;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse-dot 1.6s ease-in-out infinite;
}

body.has-urgency .nav {
  top: 38px;
}

body.has-urgency .hero {
  padding-top: 180px;
}

/* ---------- Galeria horizontal ---------- */
.gallery {
  background: var(--espresso);
  padding: 0;
  overflow: hidden;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 163, 91, 0.18);
}

.g-fig {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--espresso-2);
}

.g-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.g-fig:hover img {
  transform: scale(1.04);
}

.g-fig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 24, 16, 0.85) 100%);
  pointer-events: none;
}

.g-fig figcaption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--gold-bright);
  letter-spacing: -0.005em;
}

@media (max-width: 800px) {
  .gallery-track {
    grid-template-columns: 1fr;
  }

  .g-fig {
    aspect-ratio: 16 / 11;
  }

  .g-fig img {
    object-position: center 20%;
  }
}

/* ---------- Autoridade ---------- */
.authority {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.auth-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.auth-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.auth-card .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  color: var(--accent);
}

.auth-card .l {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.auth-card .l b {
  color: var(--espresso);
}

@media (max-width: 900px) {
  .authority {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logos-strip {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}

.logos-strip .label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.logo-cell {
  height: 56px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  opacity: 0.55;
  border: 1px dashed var(--rule);
  text-align: center;
  padding: 0 8px;
  transition: opacity 0.25s ease;
}

.logo-cell:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .logos-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Formatos ---------- */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.format {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.format:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(43, 24, 16, 0.25);
  border-color: var(--gold);
}

.format .header {
  padding: 28px 32px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.format .header .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-deep);
  line-height: 1;
}

.format .header .tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.format .body {
  padding: 24px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.format h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.3vw, 32px);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  color: var(--espresso);
}

.format h3 .it {
  font-style: italic;
  color: var(--gold-deep);
}

.format p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.format ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 18px;
}

.format ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}

.format ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.format .ribbon {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

@media (max-width: 900px) {
  .formats {
    grid-template-columns: 1fr;
  }
}

/* ---------- Depoimentos ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.testimonial {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.testimonial .qmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  height: 30px;
}

.testimonial blockquote {
  font-family: var(--serif-text);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  color: var(--espresso);
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  margin-top: auto;
}

.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial .who .n {
  font-weight: 600;
  font-size: 14px;
  color: var(--espresso);
}

.testimonial .who .r {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* ---------- Resultados ---------- */
.results {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-top: 60px;
}

.results-list {
  display: flex;
  flex-direction: column;
}

.result-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: default;
}

.result-row:first-child {
  border-top: 1px solid var(--rule);
}

.result-row .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}

.result-row .t {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--espresso);
  line-height: 1.2;
}

.result-row .ar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}

.result-row:hover .ar {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.results-side {
  background: var(--espresso);
  color: var(--cream);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.results-side::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.3);
}

.results-side h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 400;
  margin: 0 0 18px;
  line-height: 1.15;
}

.results-side h3 .it {
  font-style: italic;
  color: var(--gold-bright);
}

.results-side p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(248, 239, 217, 0.75);
  margin: 0 0 32px;
}

.results-side .stamp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.results-side .stamp .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
}

@media (max-width: 900px) {
  .results {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA Final ---------- */
.cta-final {
  position: relative;
  background:
    radial-gradient(ellipse 700px 500px at 50% 0%, rgba(201, 163, 91, 0.22), transparent 60%),
    var(--espresso);
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.12);
  pointer-events: none;
}

.cta-final::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1100px;
  height: 1100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 91, 0.06);
  pointer-events: none;
}

.cta-final .wrap-narrow {
  position: relative;
  z-index: 2;
}

.cta-final .eyebrow {
  color: var(--gold-bright);
}

.cta-final .eyebrow::before {
  background: var(--gold);
}

.cta-final h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 28px 0 32px;
  color: var(--cream);
}

.cta-final h2 .it {
  font-style: italic;
  color: var(--accent-hot);
}

.cta-final p {
  font-family: var(--serif-text);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 48px;
  color: rgba(248, 239, 217, 0.85);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-final .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFF;
  box-shadow: 0 20px 50px -15px rgba(217, 83, 46, 0.8);
  font-size: 16px;
  padding: 22px 38px;
}

.cta-final .btn-primary:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
}

.cta-final .whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #FFF;
}

.cta-final .whatsapp:hover {
  background: #20BD5A;
  border-color: #20BD5A;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(248, 239, 217, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.foot-brand {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
}

.foot-brand .it {
  font-style: italic;
  color: var(--gold-bright);
}

.foot-grid p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.foot-grid h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}

.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-grid ul a:hover {
  color: var(--gold-bright);
}

.foot-bottom {
  border-top: 1px solid rgba(248, 239, 217, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(248, 239, 217, 0.5);
}

@media (max-width: 800px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Image slot styling (theme it to match the brand) ---------- */
image-slot {
  --is-bg: var(--espresso-2);
  --is-border: rgba(201, 163, 91, 0.5);
  --is-placeholder: rgba(248, 239, 217, 0.6);
  --is-accent: var(--gold-bright);
}

/* ---------- Floating WhatsApp ---------- */
.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
  z-index: 40;
  transition: transform 0.25s ease;
}

.whats-float:hover {
  transform: scale(1.08);
}

.whats-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ---------- Theme variants (applied via [data-theme]) ---------- */
body[data-theme="navy"] {
  --bg: #F5F1EA;
  --bg-warm: #EBE5DA;
  --paper: #FBF8F3;
  --cream: #F2EDE2;
  --espresso: #0E2238;
  --espresso-2: #16314F;
  --espresso-3: #1F3D63;
  --ink: #08182A;
  --ink-soft: #354A66;
  --gold: #C9A961;
  --gold-bright: #E6CB85;
  --gold-deep: #8E6F2D;
  --blush: #6F88A6;
  --rule: rgba(14, 34, 56, 0.18);
  --rule-soft: rgba(14, 34, 56, 0.10);
}

body[data-theme="navy"] .nav {
  background: rgba(245, 241, 234, 0.85);
}

body[data-theme="navy"] image-slot {
  --is-bg: var(--espresso-2);
}

body[data-theme="ivory"] {
  --bg: #F8F2E4;
  --bg-warm: #F0E8D2;
  --paper: #FFFCF4;
  --cream: #FBF4DC;
  --espresso: #1F1208;
  --espresso-2: #2C1B0F;
  --espresso-3: #3F2917;
  --ink: #120A04;
  --ink-soft: #5A4030;
  --gold: #B98B3D;
  --gold-bright: #DBAE5C;
  --gold-deep: #7F5C24;
  --blush: #C97E63;
  --rule: rgba(31, 18, 8, 0.16);
  --rule-soft: rgba(31, 18, 8, 0.08);
}

body[data-theme="mono"] {
  --bg: #F4F2EF;
  --bg-warm: #EAE7E2;
  --paper: #FBFAF7;
  --cream: #F0EEEA;
  --espresso: #161412;
  --espresso-2: #21201D;
  --espresso-3: #2E2C29;
  --ink: #0A0908;
  --ink-soft: #4A4744;
  --gold: #B5B0A6;
  --gold-bright: #D8D2C5;
  --gold-deep: #7C7869;
  --blush: #8C857A;
  --rule: rgba(22, 20, 18, 0.15);
  --rule-soft: rgba(22, 20, 18, 0.08);
}

/* Hide all italic-gold flourishes for "minimal" mode */
body[data-flourish="minimal"] .hero-photo .gold-arc,
body[data-flourish="minimal"] .about-photo .gold-line,
body[data-flourish="minimal"] .disney-seal .seal-stars,
body[data-flourish="minimal"] .disney-seal .seal-ring.outer,
body[data-flourish="minimal"] .cta-final::before,
body[data-flourish="minimal"] .cta-final::after,
body[data-flourish="minimal"] .results-side::before {
  display: none !important;
}


/* ============================================================
   MOBILE-FIRST REFINEMENTS
   Override layer — applied at the end so it wins by source order
   ============================================================ */

/* ---------- Base mobile tweaks ---------- */
@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 19px;
  }

  section.section {
    padding: 64px 0;
  }

  .h-display {
    font-size: 40px;
    line-height: 1.05;
  }

  .h-section {
    font-size: 32px;
    line-height: 1.1;
  }

  .lede {
    font-size: 20px;
  }

  .body-text {
    font-size: 18.5px;
  }
}

/* ---------- Urgency bar wraps nicely ---------- */
@media (max-width: 600px) {
  .urgency-bar {
    font-size: 12px;
    padding: 9px 14px;
    line-height: 1.35;
  }

  .urgency-bar .sep {
    display: none;
  }

  body.has-urgency .nav {
    top: 36px;
  }
}

/* ---------- Mobile nav: hamburger ---------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--rule);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  position: relative;
  transition: all 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hide the duplicate "mobile" CTA on desktop — only the top-bar nav-cta is shown */
@media (min-width: 821px) {
  .nav-cta-mobile {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 280px;
    max-width: 85vw;
    height: 100vh !important;
    flex-direction: column;
    background: var(--bg) !important;
    padding: 80px 24px 28px !important;
    gap: 8px !important;
    border-left: 1px solid var(--rule-soft);
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    z-index: 40;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 14px 16px !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--rule-soft) !important;
    width: 100% !important;
    text-align: right;
  }

  .nav-links a:last-of-type {
    border-bottom: none !important;
  }

  .nav-links .nav-cta-mobile {
    display: inline-flex !important;
    margin-top: 24px !important;
    padding: 16px 28px !important;
    width: 100% !important;
    justify-content: center !important;
    color: #FFF !important;
  }

  .nav:has(.nav-links.open) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
  }
}

/* ---------- Hero (mobile) ---------- */
@media (max-width: 760px) {
  .hero {
    padding: 100px 0 60px;
    background:
      radial-gradient(ellipse 600px 400px at 100% 0%, rgba(217, 83, 46, 0.12), transparent 60%),
      var(--bg);
  }

  body.has-urgency .hero {
    padding-top: 120px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-ghost {
    font-size: 13px;
  }

  .hero-photo {
    margin-top: 8px;
    aspect-ratio: 4 / 5;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-photo .frame-bg {
    inset: 16px -8px -16px 8px;
  }

  .hero-photo .gold-arc {
    width: 50%;
    inset: -12px -12px auto auto;
  }

  .hero-photo .badge {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    padding: 12px 18px;
    font-size: 12px;
  }

  .hero-photo .badge .t {
    font-size: 11px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 28px;
  }

  .hero-stat:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-stat .n {
    font-size: 26px;
  }

  .hero-stat .l {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

/* ---------- Quote band ---------- */
@media (max-width: 760px) {
  .quote-band {
    padding: 56px 0;
  }

  .quote-band q {
    font-size: 22px;
    line-height: 1.4;
    padding: 0 8px;
  }
}

/* ---------- Sobre ---------- */
@media (max-width: 760px) {
  .about-photo {
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .about-photo .gold-line {
    inset: -10px -10px auto auto;
    width: 50%;
    height: 50%;
  }

  .about-photo .gold-line.bl {
    inset: auto auto -10px -10px;
  }

  .about-text .signature {
    gap: 14px;
  }

  .about-text .signature .sig {
    font-size: 24px;
  }
}

/* ---------- Padrão Disney ---------- */
@media (max-width: 760px) {
  .disney-hero h2 .mark {
    display: inline;
  }

  .pillars {
    grid-template-columns: 1fr 1fr;
  }

  .pillar {
    padding: 28px 20px;
    gap: 12px;
  }

  .pillar h3 {
    font-size: 22px;
  }

  .pillar p {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ---------- Para quem é ---------- */
@media (max-width: 760px) {
  .pq-col {
    padding: 32px 22px;
  }

  .pq-col h3 {
    font-size: 22px;
    gap: 12px;
  }

  .pq-col .yes-icon,
  .pq-col .no-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .pq-col .sub {
    padding-left: 44px;
    font-size: 12.5px;
    margin-bottom: 22px;
  }

  .pq-col ul {
    gap: 12px;
  }

  .pq-col ul li {
    font-size: 15px;
    padding-left: 32px;
  }

  .pq-col ul li::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}

/* ---------- Como funciona ---------- */
@media (max-width: 760px) {
  .steps {
    margin-top: 48px;
    gap: 36px;
  }

  .step .circle {
    width: 80px;
    height: 80px;
    font-size: 34px;
    margin-bottom: 18px;
  }

  .step h3 {
    font-size: 22px;
  }

  .step p {
    font-size: 14.5px;
    max-width: 320px;
  }
}

/* ---------- Autoridade ---------- */
@media (max-width: 760px) {
  .authority {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .auth-card {
    padding: 32px 28px;
    gap: 12px;
  }

  .auth-card .n {
    font-size: 42px;
  }

  .auth-card .l {
    font-size: 16px;
    line-height: 1.45;
  }

  .logos-strip {
    margin-top: 40px;
    padding-top: 32px;
  }

  .logos-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .logo-cell {
    height: 60px;
    font-size: 14.5px;
    letter-spacing: 0.04em;
  }
}

/* ---------- Formatos ---------- */
@media (max-width: 760px) {
  .formats {
    gap: 20px;
    margin-top: 36px;
  }

  .format .header {
    padding: 28px 24px 0;
  }

  .format .header .roman {
    font-size: 26px;
  }

  .format .body {
    padding: 20px 24px 32px;
    gap: 16px;
  }

  .format h3 {
    font-size: 24px;
  }

  .format p {
    font-size: 16px;
    line-height: 1.5;
  }

  .format ul {
    gap: 12px;
  }

  .format ul li {
    font-size: 15.5px;
  }
}

/* ---------- Galeria ---------- */
@media (max-width: 760px) {
  .g-fig {
    aspect-ratio: 4 / 5;
  }

  .g-fig figcaption {
    bottom: 18px;
    left: 18px;
    right: 18px;
    font-size: 18px;
  }
}

@media (min-width: 480px) and (max-width: 800px) {
  .gallery-track {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-track .g-fig:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 11;
  }

  .gallery-track .g-fig:nth-child(3) img {
    object-position: center 25%;
  }
}

/* ---------- Depoimentos ---------- */
@media (max-width: 760px) {
  .testimonials {
    gap: 18px;
    margin-top: 44px;
  }

  .testimonial {
    padding: 28px 24px;
    gap: 18px;
  }

  .testimonial blockquote {
    font-size: 17px;
  }

  .testimonial .qmark {
    font-size: 64px;
    height: 24px;
  }
}

/* ---------- Resultados ---------- */
@media (max-width: 760px) {
  .result-row {
    grid-template-columns: 40px 1fr auto;
    gap: 14px;
    padding: 20px 0;
  }

  .result-row .n {
    font-size: 18px;
  }

  .result-row .t {
    font-size: 18px;
    line-height: 1.25;
  }

  .result-row .ar {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .results-side {
    padding: 36px 28px;
  }

  .results-side h3 {
    font-size: 26px;
  }

  .results-side p {
    font-size: 14.5px;
  }
}

/* ---------- FAQ ---------- */
@media (max-width: 760px) {
  .faq {
    margin-top: 40px;
  }

  .faq-item summary {
    padding: 22px 0;
    font-size: 17px;
    line-height: 1.3;
    gap: 14px;
  }

  .faq-item summary::after {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .faq-item .answer {
    font-size: 16px;
    padding-bottom: 24px;
    line-height: 1.55;
  }
}

/* ---------- CTA Final ---------- */
@media (max-width: 760px) {
  .cta-final {
    padding: 80px 0;
  }

  .cta-final h2 {
    font-size: 36px;
    margin: 22px 0 24px;
    line-height: 1.08;
  }

  .cta-final p {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .cta-final::before,
  .cta-final::after {
    width: 500px;
    height: 500px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 13px;
  }

  .cta-final .btn-primary {
    padding: 20px 24px !important;
    font-size: 14px !important;
  }

  .guarantee {
    padding: 14px 18px;
    gap: 14px;
    margin-bottom: 28px;
  }

  .guarantee .seal {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .guarantee .gt b {
    font-size: 13px;
  }

  .guarantee .gt span {
    font-size: 11px;
  }
}

/* ---------- Footer ---------- */
@media (max-width: 760px) {
  footer {
    padding: 48px 0 24px;
  }

  .foot-grid {
    gap: 32px;
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .foot-brand {
    font-size: 22px;
  }

  .foot-bottom {
    font-size: 11px;
    flex-direction: column;
    gap: 8px;
  }
}

/* ---------- Floating WhatsApp ---------- */
@media (max-width: 760px) {
  .whats-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whats-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- Prevent horizontal scroll on tiny screens ---------- */
@media (max-width: 480px) {
  .hero-photo .frame-bg {
    inset: 12px 0 -12px 0;
  }

  .hero-photo .badge {
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .quote-band q {
    font-size: 19px;
  }

  .gallery-track {
    grid-template-columns: 1fr;
  }

  .gallery-track .g-fig:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-track .g-fig:nth-child(3) img {
    object-position: center top;
  }
}

/* ---------- Sales chips wrap on mobile ---------- */
@media (max-width: 600px) {
  .sales-chip {
    font-size: 10px;
    padding: 7px 12px;
    letter-spacing: 0.12em;
  }
}

/* ---------- Better tap targets ---------- */
@media (hover: none) and (pointer: coarse) {

  .nav-links a,
  .faq-item summary,
  .result-row,
  .btn {
    min-height: 44px;
  }

  .btn .arrow {
    width: 12px;
    height: 12px;
  }
}


/* ============================================================
   SCROLL STATE — hide chrome, keep only a floating menu pill
   ============================================================ */

/* Smooth transitions on chrome */
.urgency-bar,
.nav,
.nav-brand,
.nav-links,
.nav-cta,
.nav-toggle {
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1),
    opacity 0.25s ease,
    visibility 0.25s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    top 0.3s ease;
}

/* When scrolled past hero */
body.scrolled .urgency-bar {
  transform: translateY(-100%);
  pointer-events: none;
}

body.scrolled .nav {
  top: 16px !important;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  pointer-events: none;
}

body.scrolled .nav-inner {
  justify-content: flex-end;
}

body.scrolled .nav-brand,
body.scrolled .nav-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.scrolled .nav-links:not(.open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Floating hamburger — always shown when scrolled */
body.scrolled .nav-toggle {
  display: inline-flex !important;
  pointer-events: auto;
  width: 52px;
  height: 52px;
  background: var(--espresso);
  border-color: var(--espresso);
  box-shadow: 0 14px 32px -10px rgba(43, 24, 16, 0.55),
    0 4px 12px -2px rgba(43, 24, 16, 0.3);
}

body.scrolled .nav-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 16px 36px -10px rgba(217, 83, 46, 0.55);
}

body.scrolled .nav-toggle span,
body.scrolled .nav-toggle span::before,
body.scrolled .nav-toggle span::after {
  background: var(--gold-bright);
}

body.scrolled .nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

/* On desktop when scrolled, we want the same right drawer behavior */
@media (min-width: 821px) {
  body.scrolled .nav-links {
    display: flex !important;
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 320px;
    max-width: 85vw;
    height: 100vh !important;
    flex-direction: column;
    background: var(--bg) !important;
    padding: 100px 32px 28px !important;
    gap: 8px !important;
    border-left: 1px solid var(--rule-soft);
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    z-index: 40;
  }

  body.scrolled .nav-links.open {
    transform: translateX(0);
  }

  body.scrolled .nav-links.open a {
    padding: 14px 16px !important;
    font-size: 16px !important;
    border-bottom: 1px solid var(--rule-soft) !important;
    width: 100% !important;
    text-align: right;
  }

  body.scrolled .nav-links.open a:last-of-type {
    border-bottom: none !important;
  }

  body.scrolled .nav-links.open .nav-cta-mobile {
    display: inline-flex !important;
    margin-top: 24px !important;
    padding: 16px 28px !important;
    width: 100% !important;
    justify-content: center !important;
    color: #FFF !important;
  }
}

@media (max-width: 760px) {
  body.scrolled .nav {
    top: 12px !important;
  }

  body.scrolled .nav-toggle {
    width: 48px;
    height: 48px;
  }
}