/* =========================================================
   WORKSHOP DEVOLVI MEU CRACHÁ — CAMINHO 2 (ENCRUZILHADA)
   Design System v1.0 — high-ticket institucional
   ========================================================= */

/* ====================== 0. NON-CRITICAL FONTS (optional) === */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 300;
  font-display: optional;
  src: url('/assets/fonts/merriweather-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: italic;
  font-weight: 300;
  font-display: optional;
  src: url('/assets/fonts/merriweather-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/assets/fonts/merriweather-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 900;
  font-display: optional;
  src: url('/assets/fonts/merriweather-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('/assets/fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
}

/* ====================== 1. CSS VARS ====================== */
:root {
  /* Cores principais */
  --color-bg-base: #FDF8F2;
  --color-bg-warm: #FBF7F0;
  --color-bg-cool: #F5EFE5;
  --color-surface-pure: #FFFFFF;
  --color-primary: #102A2C;
  --color-primary-soft: #2D4548;
  --color-primary-muted: #6B7A75;
  --color-accent: #FFAD4E;
  --color-accent-hover: #E89940;
  --color-accent-soft: #FFC57E;
  --color-border-soft: #E8DFD3;
  --color-border-strong: #C8B8A0;

  /* Textos */
  --color-text-primary: #102A2C;
  --color-text-secondary: #6B7A75;
  --color-text-muted: #94A29F;
  --color-text-on-dark: #FDF8F2;
  --color-text-accent: #FFAD4E;

  /* Estados */
  --color-success: #2C5F2D;
  --color-error: #C44536;

  /* Translucents */
  --glass-surface-1: rgba(255, 255, 255, 0.55);
  --glass-surface-2: rgba(253, 248, 242, 0.4);
  --glass-surface-3: rgba(16, 42, 44, 0.92);
  --glass-border-light: rgba(255, 255, 255, 0.7);
  --glass-border-dark: rgba(255, 255, 255, 0.1);

  /* Glows */
  --color-primary-glow: rgba(16, 42, 44, 0.08);
  --color-accent-glow: rgba(255, 173, 78, 0.15);
  --color-accent-line: rgba(255, 173, 78, 0.3);

  /* Fontes */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-subheading: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --container-max: 1200px;
  --container-narrow: 880px;
  --padding-x-mobile: 24px;
  --padding-x-tablet: 48px;
  --padding-x-desktop: 80px;
  --section-py-mobile: 64px;
  --section-py-desktop: 96px;
  --section-py-hero: 120px;
  --gap-card: 24px;
  --gap-card-desktop: 32px;
  --gap-block: 48px;
  --gap-element: 16px;

  /* Bordas e raios */
  --radius-btn: 6px;
  --radius-card: 12px;
  --radius-input: 6px;
  --radius-pill: 100px;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(16, 42, 44, 0.04);
  --shadow-md: 0 4px 12px rgba(16, 42, 44, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 42, 44, 0.08);
  --shadow-glass:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 32px rgba(16, 42, 44, 0.08),
    0 1px 2px rgba(16, 42, 44, 0.04);
  --shadow-glass-hover:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 48px rgba(16, 42, 44, 0.12),
    0 2px 4px rgba(16, 42, 44, 0.06);
  --shadow-cta:
    0 4px 16px rgba(255, 173, 78, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  --shadow-cta-hover:
    0 8px 24px rgba(255, 173, 78, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.6, 1);

  /* Durações */
  --dur-fast: 200ms;
  --dur-base: 300ms;
  --dur-slow: 600ms;
  --dur-entrance: 700ms;
}

/* ====================== 2. RESET ====================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background camada 2 — mesh gradient sutil (aurora) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255, 173, 78, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(16, 42, 44, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(255, 173, 78, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Background camada 3 — grain orgânico */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

main, section, header, footer { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }

/* ====================== 3. TIPOGRAFIA ====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(32px, 8vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  h1 { font-size: clamp(40px, 4.5vw, 56px); }
}

h2 {
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.2;
}
@media (min-width: 1024px) {
  h2 { font-size: clamp(32px, 3.5vw, 44px); }
}

h3 {
  font-size: clamp(20px, 5vw, 24px);
  line-height: 1.25;
}
@media (min-width: 1024px) {
  h3 { font-size: clamp(24px, 2.5vw, 32px); }
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; font-weight: 300; font-family: var(--font-heading); }
strong { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .eyebrow { font-size: 14px; }
}

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

.lead-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.4;
  color: var(--color-primary-soft);
}

.anchor-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--color-primary);
  max-width: 720px;
  margin: 48px auto 0;
}
.anchor-quote span {
  color: var(--color-accent-hover);
  font-weight: 400;
}

/* ====================== 4. LAYOUT ====================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--padding-x-mobile);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--padding-x-tablet); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--padding-x-desktop); }
}

.container--narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }

.section {
  padding-top: var(--section-py-mobile);
  padding-bottom: var(--section-py-mobile);
}
@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-py-desktop);
    padding-bottom: var(--section-py-desktop);
  }
}

.section--hero {
  padding-top: clamp(80px, 12vw, var(--section-py-hero));
  padding-bottom: clamp(64px, 10vw, var(--section-py-hero));
}

.section--narrow { padding-top: 56px; padding-bottom: 56px; }

.section--warm { background-color: var(--color-bg-warm); }
.section--solution { background-color: var(--color-bg-base); }

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
}

.section--price {
  background-image:
    radial-gradient(ellipse at top, rgba(255, 173, 78, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(255, 173, 78, 0.06) 0%, transparent 70%);
  padding-top: 120px;
  padding-bottom: 120px;
}

.section--authority {
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 173, 78, 0.1) 0%, transparent 60%);
}

.section-header { margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.section-title--on-dark { color: var(--color-text-on-dark); }

.section-lede {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--color-primary-soft);
  margin-bottom: 24px;
}

.section-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.section--dark .section-body { color: var(--color-text-on-dark); }

.section-body--strong {
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 32px;
}

.section-closer {
  margin-top: 56px;
  font-size: 19px;
  color: var(--color-primary);
}

.divider-gold {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 64px auto 0;
}

.bird-symbol {
  display: inline-block;
  color: var(--color-accent);
  margin-bottom: 24px;
  opacity: 0.85;
}

/* ====================== 5. CARDS (GLASSMORPHISM) ====================== */
.card {
  background: var(--glass-surface-1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-glass);
  transition:
    transform var(--dur-base) var(--ease-out-expo),
    box-shadow var(--dur-base) ease,
    border-color var(--dur-base) ease;
}

.card:hover {
  transform: scale(1.015) translateY(-2px);
  box-shadow: var(--shadow-glass-hover);
  border-color: var(--color-accent-soft);
}

@media (max-width: 767px) {
  .card { backdrop-filter: blur(10px); padding: 24px; }
}

/* ====================== 6. CTAs ====================== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  padding: 0 32px;
  background: linear-gradient(135deg, #FFAD4E 0%, #E89940 100%);
  color: var(--color-primary);
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-btn);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-cta);
  transition: all 250ms var(--ease-out-expo);
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cta-primary { height: 64px; padding: 0 48px; font-size: 17px; }
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 600ms ease;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); }
.cta-primary:hover::before { left: 100%; }

.cta-primary--xl {
  height: 72px;
  padding: 0 56px;
  font-size: 18px;
  margin-top: 24px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  padding: 0 32px;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 12px rgba(16, 42, 44, 0.15);
  text-decoration: none;
  transition: all 250ms var(--ease-out-expo);
}
.cta-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16, 42, 44, 0.25); }

.cta-secondary--whatsapp { background: #25D366; color: #fff; border-color: rgba(255, 255, 255, 0.2); }

.cta-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 12px;
}

/* ====================== 7. SITE HEADER ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 242, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--color-border-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.site-header__bird { color: var(--color-accent); display: inline-flex; }
@media (max-width: 480px) {
  .site-header__brand-text { display: none; }
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 173, 78, 0.4);
  transition: all 200ms ease;
}
.site-header__cta:hover { background: var(--color-primary-soft); transform: translateY(-1px); }

/* ====================== 8. HERO (Dobra 1) ====================== */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 55fr 45fr; gap: 64px; }
}

.hero__title {
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (min-width: 1280px) {
  .hero__title { font-size: clamp(40px, 4vw, 56px); }
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
}
.hero__title-emphasis {
  display: block;
  margin-top: 12px;
  color: var(--color-primary);
  background-image: linear-gradient(transparent 70%, rgba(255, 173, 78, 0.25) 70%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-right: 4px;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-primary-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__subtitle strong {
  color: var(--color-primary);
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.hero__cta-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hero__visual { display: flex; justify-content: center; }
.hero__image-wrap {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ====================== 9. IDENTIFICAÇÃO DA DOR (Dobra 2) ====================== */
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.voice-card {
  margin: 0;
  padding: 28px;
}
.voice-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-primary);
  margin: 0;
}

/* ====================== 10. DIAGNÓSTICO (Dobra 3) ====================== */
.trap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .trap-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.trap-card {
  position: relative;
  padding: 40px 32px 32px;
  overflow: hidden;
}
.trap-card__number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 88px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.08;
  pointer-events: none;
}
.trap-card__icon { color: var(--color-accent); margin-bottom: 16px; }
.trap-card__title {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.trap-card p { font-size: 15px; line-height: 1.6; color: var(--color-primary-soft); margin: 0; }

/* ====================== 11. OPORTUNIDADE (Dobra 4) ====================== */
.opportunity-block { display: block; }
.opportunity-image {
  margin: 48px auto;
  max-width: 720px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.opportunity-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ====================== 12. PROVA SOCIAL — WHATSAPP (Dobra 6) ====================== */
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .whatsapp-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.whatsapp-card { display: flex; flex-direction: column; align-items: flex-start; }

.whatsapp-card__bubble {
  background: #1F2C34; /* WhatsApp dark bubble */
  color: #E9EDEF;
  padding: 16px 20px 12px;
  border-radius: 14px 14px 14px 4px;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 6px 16px rgba(16, 42, 44, 0.12);
  max-width: 100%;
}
.whatsapp-card__bubble p {
  margin: 0 0 8px;
  color: #E9EDEF;
  font-family: var(--font-body);
  font-style: normal;
}
.whatsapp-card__time {
  display: block;
  font-size: 12px;
  color: #8696A0;
  text-align: right;
}
.whatsapp-card__voice-note {
  display: block;
  font-size: 11px;
  color: #FFAD4E;
  margin-top: 6px;
  font-style: italic;
}
.whatsapp-card__author {
  font-family: var(--font-subheading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  margin-left: 12px;
  text-transform: uppercase;
}

/* ====================== 13. MECANISMO (Dobra 7) ====================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.step-card {
  position: relative;
  padding: 36px 28px 28px;
  overflow: hidden;
}
.step-card__number {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.08;
  pointer-events: none;
}
.step-card__icon { color: var(--color-accent); margin-bottom: 16px; }
.step-card__title {
  font-family: var(--font-subheading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.step-card p { font-size: 14px; line-height: 1.6; color: var(--color-primary-soft); margin: 0; }

/* ====================== 14. ENTREGÁVEIS (Dobra 8) ====================== */
.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .deliverables__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.deliverables__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.deliverables__list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.deliverables__list li:last-child { border-bottom: none; }
.deliverables__list .icon-wrap { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.deliverables__list strong {
  display: block;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.deliverables__list p { font-size: 15px; color: var(--color-primary-soft); margin: 0; }

.deliverables__visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.deliverables__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ====================== 15. BÔNUS (Dobra 9) ====================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }

.bonus-card { text-align: center; padding: 40px 32px; }
.bonus-card__icon {
  color: var(--color-accent);
  margin-bottom: 20px;
  display: inline-block;
}
.bonus-card__title {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.bonus-card p { font-size: 15px; color: var(--color-primary-soft); margin: 0; }

/* ====================== 16. PARA QUEM É (Dobra 10) ====================== */
.for-whom-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border-soft);
}
.for-whom-list li:last-child { border-bottom: none; }
.for-whom-list .icon-wrap { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }

.for-whom-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--color-text-secondary);
}

.for-whom-warning {
  margin: 48px auto 0;
  max-width: 640px;
  padding: 24px 28px;
  background: rgba(196, 69, 54, 0.05);
  border-left: 3px solid var(--color-error);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-primary-soft);
}

/* ====================== 17. ANCORAGEM + OFERTA (Dobra 11 — QUEBRA VERDE) ====================== */
.value-stack {
  margin: 48px auto 32px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-stack li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(253, 248, 242, 0.15);
  text-align: left;
}
.value-stack li span {
  font-size: 15px;
  color: rgba(253, 248, 242, 0.75);
  flex: 1;
}
.value-stack li strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-on-dark);
}

.value-total {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 16px auto 56px;
  padding: 20px 36px;
  border: 1px solid rgba(255, 173, 78, 0.4);
  border-radius: var(--radius-card);
  background: rgba(255, 173, 78, 0.05);
}
.value-total__label {
  font-family: var(--font-subheading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
}
.value-total__amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  color: var(--color-text-on-dark);
  letter-spacing: -0.02em;
}

.offer-card {
  position: relative;
  margin: 0 auto;
  max-width: 560px;
  padding: 56px 40px;
  background: rgba(16, 42, 44, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 173, 78, 0.4);
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 173, 78, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.offer-card__eyebrow {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 6px 14px;
  border: 1px solid rgba(255, 173, 78, 0.3);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.offer-card__lede {
  font-size: 16px;
  color: rgba(253, 248, 242, 0.8);
  margin-bottom: 24px;
}

.price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
}
.price-block__currency {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
}
.price-block__amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 110px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  text-shadow: 0 4px 32px rgba(255, 173, 78, 0.3);
}
.price-block__suffix {
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: 18px;
  color: rgba(253, 248, 242, 0.8);
  margin-left: 8px;
}

.offer-card__sub {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.65);
  margin-bottom: 32px;
}

.offer-card__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.offer-card__perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  color: rgba(253, 248, 242, 0.85);
}
.offer-card__perks svg { color: var(--color-accent); }

.price-glow { animation: glow-pulse 2400ms ease-in-out 2 forwards; animation-delay: 600ms; }
@keyframes glow-pulse {
  0%, 100% { box-shadow:
      0 0 0 1px rgba(255, 173, 78, 0.15),
      0 24px 64px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(255, 173, 78, 0); }
  50% { box-shadow:
      0 0 0 1px rgba(255, 173, 78, 0.4),
      0 24px 64px rgba(0, 0, 0, 0.35),
      0 0 60px 12px rgba(255, 173, 78, 0.25); }
}

.how-it-works {
  margin-top: 80px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  text-align: left;
}
.how-it-works h3 {
  color: var(--color-text-on-dark);
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-subheading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.how-it-works ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(253, 248, 242, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

/* ====================== 18. GARANTIA (Dobra 12) ====================== */
.section--guarantee { background-color: var(--color-bg-base); }

.guarantee-seal {
  display: block;
  margin: 0 auto 32px;
  width: 180px;
  height: auto;
}
.guarantee-seal img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255, 173, 78, 0.35)) drop-shadow(0 8px 32px rgba(16, 42, 44, 0.18));
}
.guarantee-seal__days {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--color-primary);
}
.guarantee-seal__label {
  position: absolute;
  bottom: 18px;
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary-soft);
}

/* ====================== 19. AUTORIDADE (Dobra 13 — QUEBRA VERDE) ====================== */
.authority__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .authority__grid { grid-template-columns: 40fr 60fr; gap: 64px; }
}

.authority__photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 173, 78, 0.15), transparent 60%);
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.authority__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.95) saturate(0.9);
}

.authority__copy { color: var(--color-text-on-dark); }
.authority__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(253, 248, 242, 0.85);
  margin-bottom: 16px;
}
.authority__copy strong { color: var(--color-text-on-dark); }

.authority__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.authority__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.authority__label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(253, 248, 242, 0.65);
}
@media (max-width: 480px) {
  .authority__label { font-size: 12px; letter-spacing: 0.4px; }
}

.authority__quote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(253, 248, 242, 0.9);
}

.authority__cta-meta {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(253, 248, 242, 0.6);
}

/* ====================== 20. FAQ (Dobra 14) ====================== */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-surface-1);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-card);
  padding: 0;
  box-shadow: var(--shadow-glass);
  transition: border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--color-accent-soft); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--dur-base) var(--ease-out-expo);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__body {
  padding: 0 28px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-primary-soft);
}

/* ====================== 21. SITE FOOTER (QUEBRA VERDE) ====================== */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-text-on-dark);
  padding: 48px 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer__bird { color: var(--color-accent); opacity: 0.7; }
.site-footer__copy {
  font-size: 13px;
  color: rgba(253, 248, 242, 0.55);
  margin: 0;
  text-align: center;
}

/* ====================== 22. STICKY CTA (mobile) ====================== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(120%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  background: linear-gradient(135deg, #FFAD4E 0%, #E89940 100%);
  color: var(--color-primary);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 400ms var(--ease-out-expo);
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* ====================== 23. ANIMAÇÕES ====================== */
/* Default: visible (no-JS / pre-JS state — prevents LCP opacity:0 block) */
.fade-in { opacity: 1; transform: none; }

/* JS enabled: hide then animate in */
.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--dur-entrance) var(--ease-out-expo),
    transform var(--dur-entrance) var(--ease-out-expo);
  will-change: opacity, transform;
}
.js-enabled .fade-in.is-visible { opacity: 1; transform: none; }

.stagger > .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger > .fade-in:nth-child(2) { transition-delay: 80ms; }
.stagger > .fade-in:nth-child(3) { transition-delay: 160ms; }
.stagger > .fade-in:nth-child(4) { transition-delay: 240ms; }
.stagger > .fade-in:nth-child(5) { transition-delay: 320ms; }
.stagger > .fade-in:nth-child(6) { transition-delay: 400ms; }
.stagger > .fade-in:nth-child(7) { transition-delay: 480ms; }
.stagger > .fade-in:nth-child(8) { transition-delay: 560ms; }

@media (max-width: 767px) {
  .stagger > .fade-in:nth-child(n) { transition-delay: 0ms; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .js-enabled .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .price-glow { animation: none; }
  html { scroll-behavior: auto; }
}

/* ====================== 24. IMG TREATMENT ====================== */
.img-treated img {
  filter: brightness(1.02) contrast(0.95) saturate(0.9);
}

.img-placeholder {
  min-height: 320px;
  background: repeating-linear-gradient(
    45deg,
    var(--color-bg-cool),
    var(--color-bg-cool) 10px,
    var(--color-bg-warm) 10px,
    var(--color-bg-warm) 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subheading);
  font-size: 14px;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-card);
}
.img-placeholder::before {
  content: attr(alt);
  white-space: pre-wrap;
}

/* ====================== 25. UTILITIES ====================== */
@media (max-width: 767px) {
  .section-header { margin-bottom: 40px; }
  .anchor-quote { margin-top: 32px; font-size: 18px; }
  .section--price { padding-top: 80px; padding-bottom: 80px; }
  .offer-card { padding: 40px 24px; }
  .how-it-works { padding: 24px; }
}

@supports not (backdrop-filter: blur(20px)) {
  .card, .faq-item { background: rgba(255, 255, 255, 0.85); }
  .site-header { background: var(--color-bg-base); }
}

/* ====================== 26. HERO v2 — DARK · logo + frame + event card ====================== */

/* Seção hero em verde escuro */
.section--hero {
  overflow: hidden;
  background-color: var(--color-primary);
  background-image:
    radial-gradient(ellipse at 12% 45%, rgba(255, 173, 78, 0.10) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 8%,  rgba(253, 248, 242, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse at 72% 92%, rgba(255, 173, 78, 0.05) 0%, transparent 42%);
}

/* Textos do copy hero sobre fundo escuro */
.section--hero .hero__copy        { color: var(--color-text-on-dark); }
.section--hero .hero__title       { color: var(--color-text-on-dark); }
.section--hero .hero__title em    { color: rgba(253, 248, 242, 0.65); }
.section--hero .hero__title-emphasis {
  color: var(--color-text-on-dark);
  background-image: linear-gradient(transparent 70%, rgba(255, 173, 78, 0.20) 70%);
}
.section--hero .hero__subtitle         { color: rgba(253, 248, 242, 0.75); }
.section--hero .hero__subtitle strong  { color: var(--color-text-on-dark); }
.section--hero .hero__cta-meta         { color: rgba(253, 248, 242, 0.50); }

/* Logo — branco sobre escuro, sem pill */
.hero__logo {
  display: inline-block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 36px;
}
.hero__logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Coluna visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
/* Brilho ouro difuso atrás da imagem */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255, 173, 78, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Frame da imagem */
.hero__image-frame {
  position: relative;
  width: 100%;
  padding-bottom: 48px;
  z-index: 1;
}

/* Cantos decorativos em ouro — top-right */
.hero__image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 52px;
  height: 52px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 10px 0 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
}
/* bottom-left */
.hero__image-frame::after {
  content: '';
  position: absolute;
  bottom: 44px;
  left: -10px;
  width: 52px;
  height: 52px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 10px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.85;
}

/* Wrap da imagem — fundo teal da foto funde com a página */
.hero__image-wrap {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--color-primary);
  aspect-ratio: auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.40),
    0 4px 16px rgba(0, 0, 0, 0.20);
}
.hero__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Card de evento — glass escuro com borda ouro no topo */
.hero__event-card {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  padding: 16px 22px;
  background: rgba(16, 42, 44, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 173, 78, 0.45);
  border-radius: 10px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  z-index: 10;
}

.hero__event-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent);
  white-space: nowrap;
  padding-right: 16px;
  flex-shrink: 0;
}

.hero__event-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: dot-pulse 1600ms ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__event-dot { animation: none; }
}

.hero__event-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  margin-right: 16px;
}

.hero__event-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.hero__event-date {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-on-dark);
  line-height: 1.3;
}

.hero__event-time {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(253, 248, 242, 0.58);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .hero__logo { margin-bottom: 24px; }
  .hero__logo img { height: 32px; }
  .hero__image-frame::before,
  .hero__image-frame::after { width: 36px; height: 36px; }
  .hero__event-card { padding: 12px 14px; left: 8px; right: 8px; }
  .hero__event-date { font-size: 13px; }
}

/* ====================== 27. DOBRA 2 — VOZES DA CABEÇA (v2) ====================== */

/* Linha ouro separando intro dos cards */
#identificacao .text-center::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 32px auto 0;
}

/* Grid 3-col no desktop */
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .voices-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* Card base */
.voice-card {
  margin: 0;
  padding: 36px 24px 28px;
  position: relative;
  overflow: hidden;
}

/* Aspas decorativas — ouro 9% de opacidade */
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: -2px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 104px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  transition: opacity var(--dur-base) ease;
}

/* Barra ouro esquerda — aparece no hover */
.voice-card::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: -1px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(255, 173, 78, 0.15) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.voice-card:hover::before { opacity: 0.18; }
.voice-card:hover::after  { opacity: 1; }

/* Texto — z-index acima das aspas, com espaço no topo */
.voice-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-primary);
  margin: 0;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

/* Card featured (5º voz — o medo) */
.voice-card--featured {
  background: rgba(255, 173, 78, 0.04);
  border-color: rgba(255, 173, 78, 0.25);
}
.voice-card--featured::before {
  opacity: 0.14;
  font-size: 120px;
}
.voice-card--featured p {
  font-size: 19px;
  color: var(--color-primary);
}
.voice-card--featured:hover {
  border-color: rgba(255, 173, 78, 0.45);
}
.voice-card--featured:hover::before { opacity: 0.22; }

@media (min-width: 1024px) {
  /* Na grid de 3 cols, o featured ocupa coluna central destacando-se por altura */
  .voice-card--featured p { font-size: 20px; line-height: 1.6; }
}

/* ====================== 28. DOBRA 3 — ARMADILHAS (v2) ====================== */

/* Grid 4-col no desktop — sequência narrativa 01→02→03→04 */
@media (min-width: 1024px) {
  .trap-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* Número de fundo — ouro no lugar de verde, com transição no hover */
.trap-card__number {
  color: var(--color-accent);
  opacity: 0.10;
  transition: opacity var(--dur-base) ease;
}
.trap-card:hover .trap-card__number { opacity: 0.20; }

/* Ícone com backdrop arredondado */
.trap-card__icon {
  color: var(--color-accent);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 173, 78, 0.09);
  border: 1px solid rgba(255, 173, 78, 0.15);
  transition:
    background var(--dur-base) ease,
    border-color var(--dur-base) ease;
}
.trap-card:hover .trap-card__icon {
  background: rgba(255, 173, 78, 0.16);
  border-color: rgba(255, 173, 78, 0.32);
}

/* Ajuste de densidadeno 4-col */
@media (min-width: 1024px) {
  .trap-card { padding: 36px 22px 28px; }
  .trap-card__number { font-size: 72px; }
  .trap-card__title { font-size: 16px; }
  .trap-card p { font-size: 14px; }
}

/* Section-closer com linhas ouro acima e abaixo */
.section-closer {
  margin-top: 0;
  padding: 44px 0 8px;
  font-size: 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  position: relative;
}
.section-closer::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto 28px;
}
.section-closer strong { color: var(--color-primary); }

/* ====================== 30. DOBRA 5 — SOLUÇÃO (v2) ====================== */

/* Pássaro maior, opacidade total, mais presença */
#solucao .bird-symbol {
  color: var(--color-accent);
  margin-bottom: 32px;
  opacity: 1;
}
#solucao .bird-symbol svg {
  width: 56px;
  height: 56px;
  font-size: 56px;
}

/* Anchor quote com barra ouro acima — mesmo tratamento da dobra 4 */
#solucao .anchor-quote::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ====================== 29. DOBRA 4 — OPORTUNIDADE (v2) ====================== */

/* Gradiente sutil no topo-direito para diferenciar do fundo neutro */
#oportunidade {
  background-image: radial-gradient(ellipse at 80% 0%, rgba(255, 173, 78, 0.07) 0%, transparent 55%);
}

/* Frases-chave com sublinhado ouro estilo highlight */
#oportunidade .section-body strong {
  background-image: linear-gradient(transparent 72%, rgba(255, 173, 78, 0.26) 72%);
  background-repeat: no-repeat;
  padding-right: 2px;
}

/* Parágrafos com separador suave entre si */
#oportunidade .section-body {
  font-size: 19px;
  line-height: 1.72;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border-soft);
}
#oportunidade .section-body:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Imagem com tratamento premium */
.opportunity-image {
  margin: 56px auto;
  max-width: 400px;
  position: relative;
}
.opportunity-image__inner {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(16, 42, 44, 0.12),
    0 4px 12px rgba(16, 42, 44, 0.06);
}
.opportunity-image__inner img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
}
/* Canto ouro decorativo */
.opportunity-image::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 8px 0 0;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}
.opportunity-image::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 44px;
  height: 44px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 8px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 1;
}

/* Anchor quote reforçado — linha ouro acima e tamanho maior */
#oportunidade .anchor-quote {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-top: 56px;
}
#oportunidade .anchor-quote::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ====================== 31. DOBRA 6 — PROVA SOCIAL (v2) ====================== */

/* Background: duas manchas de luz suave sobre o warm */
#prova-social {
  position: relative;
  overflow: hidden;
}
#prova-social::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 88%, rgba(255, 173, 78, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse at 92% 10%, rgba(16, 42, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
#prova-social .container { position: relative; }

/* Grid: offset alternado no desktop — dá profundidade sem mudar o layout */
@media (min-width: 1024px) {
  #prova-social .whatsapp-grid { align-items: start; }
  #prova-social .whatsapp-card:nth-child(even) { margin-top: 32px; }
}

/* Card: transição de hover mais ágil que o fade-in */
#prova-social .whatsapp-card {
  transition:
    opacity 640ms var(--ease-out-expo),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#prova-social .whatsapp-card:hover { transform: translateY(-7px); }

/* Bubble: gradiente sutil + borda fina + overflow para clip das aspas */
#prova-social .whatsapp-card__bubble {
  background: linear-gradient(148deg, #1F2C34 0%, #18252F 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  width: 100%;
}

/* Aspas decorativas — ouro no canto inferior direito */
#prova-social .whatsapp-card__bubble::before {
  content: '\201C';
  position: absolute;
  bottom: -14px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 100px;
  line-height: 1;
  color: #FFAD4E;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease;
}

/* Linha ouro esquerda — surge no hover */
#prova-social .whatsapp-card__bubble::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(255, 173, 78, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover: sombra profunda + borda ouro + aspas mais visíveis */
#prova-social .whatsapp-card:hover .whatsapp-card__bubble {
  box-shadow:
    0 24px 56px rgba(16, 42, 44, 0.30),
    0 4px 14px rgba(16, 42, 44, 0.12),
    0 0 0 1px rgba(255, 173, 78, 0.14);
  border-color: rgba(255, 173, 78, 0.16);
}
#prova-social .whatsapp-card:hover .whatsapp-card__bubble::before { opacity: 0.13; }
#prova-social .whatsapp-card:hover .whatsapp-card__bubble::after  { opacity: 1; }

/* Texto: acima das aspas decorativas */
#prova-social .whatsapp-card__bubble p {
  position: relative;
  z-index: 1;
}

/* Ticks de leitura — estilo WhatsApp */
#prova-social .whatsapp-card__time::after {
  content: ' ✓✓';
  color: #53BDEB;
  font-size: 11px;
  letter-spacing: -0.5px;
  margin-left: 2px;
}

/* Author: ponto ouro como marcador */
#prova-social .whatsapp-card__author {
  margin-top: 14px;
  padding-left: 14px;
  position: relative;
}
#prova-social .whatsapp-card__author::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.55;
}

/* Stagger mais espaçado para entrada premium */
#prova-social .stagger > .fade-in:nth-child(1) { transition-delay: 0ms; }
#prova-social .stagger > .fade-in:nth-child(2) { transition-delay: 130ms; }
#prova-social .stagger > .fade-in:nth-child(3) { transition-delay: 260ms; }
#prova-social .stagger > .fade-in:nth-child(4) { transition-delay: 390ms; }

/* ====================== 32. DOBRA 7 — MECANISMO (v2) ====================== */

/* Fundo: mancha sutil para diferenciar do neutro */
#mecanismo {
  background-image: radial-gradient(ellipse at 50% 0%, rgba(255, 173, 78, 0.05) 0%, transparent 60%);
}

/* Número: ouro (como dobra 3) */
#mecanismo .step-card__number {
  color: var(--color-accent);
  opacity: 0.10;
  transition: opacity var(--dur-base) ease;
}
#mecanismo .step-card:hover .step-card__number { opacity: 0.22; }

/* Ícone: backdrop circular gold (mesmo padrão dobra 3) */
#mecanismo .step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 173, 78, 0.09);
  border: 1px solid rgba(255, 173, 78, 0.15);
  margin-bottom: 20px;
  transition:
    background var(--dur-base) ease,
    border-color var(--dur-base) ease;
}
#mecanismo .step-card:hover .step-card__icon {
  background: rgba(255, 173, 78, 0.16);
  border-color: rgba(255, 173, 78, 0.30);
}

/* Card: hover lift */
#mecanismo .step-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
#mecanismo .step-card:hover { transform: translateY(-5px); }

/* Separador vertical entre steps no desktop */
@media (min-width: 1024px) {
  #mecanismo .step-card:not(:last-child) {
    border-right: 1px solid rgba(255, 173, 78, 0.12);
  }
}

/* Anchor-quote: gold bar acima (mesmo padrão dobra 5) */
#mecanismo .anchor-quote::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* Imagem do caderno */
.mechanism-image {
  margin: 64px auto 0;
  max-width: 680px;
  position: relative;
}
.mechanism-image__inner {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(16, 42, 44, 0.12),
    0 4px 12px rgba(16, 42, 44, 0.06);
}
.mechanism-image__inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Cantos ouro decorativos */
.mechanism-image::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 44px; height: 44px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 8px 0 0;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.mechanism-image::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -8px;
  width: 44px; height: 44px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 8px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* ====================== 33. DOBRA 8 — ENTREGÁVEIS (v2) ====================== */

/* Imagem: frame com cantos ouro e sombra */
.deliverables__visual-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(16, 42, 44, 0.14),
    0 4px 14px rgba(16, 42, 44, 0.08);
}
.deliverables__visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.deliverables__visual {
  position: relative;
}
.deliverables__visual::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 44px; height: 44px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 8px 0 0;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.deliverables__visual::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -8px;
  width: 44px; height: 44px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 8px;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* Ícones: backdrop gold */
#entregaveis .deliverables__list .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 173, 78, 0.09);
  border: 1px solid rgba(255, 173, 78, 0.15);
  flex-shrink: 0;
  margin-top: 0;
  position: relative;
  transition:
    background var(--dur-base) ease,
    border-color var(--dur-base) ease;
}

/* Item hover: gold bar esquerda + fundo sutil */
#entregaveis .deliverables__list li {
  padding: 18px 12px 18px 16px;
  border-radius: 10px;
  border-bottom: none;
  position: relative;
  transition:
    background var(--dur-base) ease;
}
#entregaveis .deliverables__list li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--color-border-soft);
}
#entregaveis .deliverables__list li:last-child::after { display: none; }
#entregaveis .deliverables__list li:hover {
  background: rgba(255, 173, 78, 0.04);
}
#entregaveis .deliverables__list li:hover .icon-wrap {
  background: rgba(255, 173, 78, 0.16);
  border-color: rgba(255, 173, 78, 0.30);
}

/* Gold bar esquerda no hover */
#entregaveis .deliverables__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(255, 173, 78, 0.15) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}
#entregaveis .deliverables__list li:hover::before { opacity: 1; }

/* Numeração sequencial via CSS counter */
#entregaveis .deliverables__list {
  counter-reset: deliverable;
}
#entregaveis .deliverables__list li {
  counter-increment: deliverable;
}
#entregaveis .deliverables__list li .item-number {
  display: none; /* gerado via CSS */
}
#entregaveis .deliverables__list .icon-wrap::after {
  content: counter(deliverable, decimal-leading-zero);
  position: absolute;
  top: -6px; right: -6px;
  font-family: var(--font-subheading);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-bg-warm);
  border: 1px solid rgba(255, 173, 78, 0.35);
  border-radius: 4px;
  padding: 1px 3px;
  line-height: 1.2;
}

/* Animação de entrada com blur — disparada quando .deliverables__copy fica visível */
@keyframes entregavelIn {
  from { opacity: 0; transform: translateY(14px); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
#entregaveis .deliverables__list li {
  opacity: 0;
}
#entregaveis .deliverables__copy.is-visible .deliverables__list li {
  animation: entregavelIn 0.55s var(--ease-out-expo) both;
}
#entregaveis .deliverables__copy.is-visible .deliverables__list li:nth-child(1) { animation-delay: 80ms; }
#entregaveis .deliverables__copy.is-visible .deliverables__list li:nth-child(2) { animation-delay: 180ms; }
#entregaveis .deliverables__copy.is-visible .deliverables__list li:nth-child(3) { animation-delay: 280ms; }
#entregaveis .deliverables__copy.is-visible .deliverables__list li:nth-child(4) { animation-delay: 380ms; }
#entregaveis .deliverables__copy.is-visible .deliverables__list li:nth-child(5) { animation-delay: 480ms; }

/* Sem animação para prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  #entregaveis .deliverables__list li { opacity: 1; }
  #entregaveis .deliverables__copy.is-visible .deliverables__list li { animation: none; }
}

/* Background: blob radial warm na seção */
#entregaveis {
  position: relative;
  overflow: hidden;
}
#entregaveis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 15%, rgba(255, 173, 78, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(16, 42, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
#entregaveis .container { position: relative; }

/* Label flutuante sobre a imagem */
.deliverables__visual-frame {
  position: relative;
}
.deliverables__visual-frame::after {
  content: '5 entregáveis incluídos';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-subheading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(16, 42, 44, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 173, 78, 0.30);
  border-radius: 20px;
  padding: 6px 16px;
}

/* ====================== 34. DOBRA 9 — BÔNUS (v2) ====================== */

/* Fundo: mancha radial sutil */
#bonus {
  position: relative;
  overflow: hidden;
}
#bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(255, 173, 78, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(16, 42, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
#bonus .container { position: relative; }

/* Numeração sequencial nos cards */
#bonus .bonus-grid { counter-reset: bonus; }
#bonus .bonus-card { counter-increment: bonus; }

/* Card: linha ouro no topo + badge numérico */
#bonus .bonus-card {
  position: relative;
  overflow: visible;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
#bonus .bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
#bonus .bonus-card::after {
  content: '0' counter(bonus);
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--font-subheading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  background: var(--color-bg-base);
  border: 1px solid rgba(255, 173, 78, 0.30);
  border-radius: 6px;
  padding: 2px 7px;
  line-height: 1.4;
}

/* Hover: lift + glow dourado */
#bonus .bonus-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 56px rgba(16, 42, 44, 0.16),
    0 0 0 1px rgba(255, 173, 78, 0.20),
    0 0 32px rgba(255, 173, 78, 0.08);
}
#bonus .bonus-card:hover::before { opacity: 1; }

/* Ícone: backdrop proporcional ao 40px + escala no hover */
#bonus .bonus-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 173, 78, 0.09);
  border: 1px solid rgba(255, 173, 78, 0.15);
  margin-bottom: 24px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}
#bonus .bonus-card:hover .bonus-card__icon {
  transform: scale(1.10);
  background: rgba(255, 173, 78, 0.16);
  border-color: rgba(255, 173, 78, 0.35);
}

/* Stagger com delays maiores para 3 cards */
#bonus .stagger > .fade-in:nth-child(1) { transition-delay: 0ms; }
#bonus .stagger > .fade-in:nth-child(2) { transition-delay: 150ms; }
#bonus .stagger > .fade-in:nth-child(3) { transition-delay: 300ms; }

/* ====================== 35. DOBRA 10 — PARA QUEM É (v2) ====================== */

/* Blob radial no fundo */
#para-quem {
  position: relative;
  overflow: hidden;
}
#para-quem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 50%, rgba(255, 173, 78, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 20%, rgba(16, 42, 44, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
#para-quem .container { position: relative; }

/* Check icon: backdrop circular gold */
#para-quem .for-whom-list .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 173, 78, 0.10);
  border: 1px solid rgba(255, 173, 78, 0.20);
  margin-top: 0;
  transition:
    background var(--dur-base) ease,
    border-color var(--dur-base) ease,
    transform var(--dur-base) ease;
}

/* Item: hover com barra ouro esquerda + tint */
#para-quem .for-whom-list li {
  padding: 14px 12px 14px 16px;
  border-bottom: none;
  border-radius: 10px;
  position: relative;
  transition: background var(--dur-base) ease;
  align-items: center;
}
#para-quem .for-whom-list li::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--color-border-soft);
}
#para-quem .for-whom-list li:last-child::after { display: none; }
#para-quem .for-whom-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px;
  background: linear-gradient(180deg, var(--color-accent) 0%, rgba(255, 173, 78, 0.15) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}
#para-quem .for-whom-list li:hover { background: rgba(255, 173, 78, 0.04); }
#para-quem .for-whom-list li:hover::before { opacity: 1; }
#para-quem .for-whom-list li:hover .icon-wrap {
  background: rgba(255, 173, 78, 0.18);
  border-color: rgba(255, 173, 78, 0.35);
  transform: scale(1.08);
}

/* Strong: underline ouro sutil */
#para-quem .for-whom-list strong {
  background-image: linear-gradient(transparent 72%, rgba(255, 173, 78, 0.28) 72%);
  background-repeat: no-repeat;
  padding-right: 2px;
}

/* Nota final: callout pill */
#para-quem .for-whom-note {
  margin-top: 40px;
  padding: 14px 24px;
  background: rgba(255, 173, 78, 0.06);
  border: 1px solid rgba(255, 173, 78, 0.18);
  border-radius: 40px;
  font-family: var(--font-subheading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-block;
  width: auto;
}

/* Bloco de exclusão: glass escuro refinado */
#para-quem .for-whom-warning {
  background: rgba(16, 42, 44, 0.06);
  border-left: none;
  border: 1px solid rgba(196, 69, 54, 0.20);
  border-top: 2px solid rgba(196, 69, 54, 0.45);
  border-radius: 12px;
  padding: 28px 32px;
  font-size: 15px;
  color: var(--color-primary-soft);
  position: relative;
}
#para-quem .for-whom-warning::before {
  content: 'Atenção';
  display: block;
  font-family: var(--font-subheading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-error);
  margin-bottom: 10px;
  opacity: 0.75;
}

/* ====================== 36. DOBRA 11 — OFERTA (v2 · HIGH-TICKET) ====================== */

/* Background: radial glows + watermark */
.section--price {
  position: relative;
  overflow: hidden;
}
.section--price::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(255, 173, 78, 0.10) 0%, transparent 52%),
    radial-gradient(ellipse at 85% 20%, rgba(255, 173, 78, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 173, 78, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.section--price::after {
  content: 'R$49';
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 360px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.018);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
  z-index: 0;
}
.section--price .container { position: relative; z-index: 1; }

/* Value stack: glass items */
#oferta .value-stack {
  gap: 6px;
}
#oferta .value-stack li {
  padding: 14px 20px;
  border-radius: 10px;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background var(--dur-base) ease,
    border-color var(--dur-base) ease;
}
#oferta .value-stack li:hover {
  background: rgba(255, 173, 78, 0.06);
  border-color: rgba(255, 173, 78, 0.18);
}
#oferta .value-stack li strong {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(255, 173, 78, 0.35);
}

/* Value total: glow reforçado */
#oferta .value-total {
  background: rgba(255, 173, 78, 0.07);
  border-color: rgba(255, 173, 78, 0.50);
  box-shadow:
    0 0 40px rgba(255, 173, 78, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
#oferta .value-total__amount {
  text-shadow: 0 0 48px rgba(255, 173, 78, 0.55);
}

/* Offer card: redesign high-ticket */
#oferta .offer-card {
  border-radius: 28px;
  max-width: 580px;
  padding: 64px 56px;
  background: linear-gradient(160deg, rgba(20, 50, 52, 0.97) 0%, rgba(10, 28, 30, 0.99) 100%);
  border: 1px solid rgba(255, 173, 78, 0.30);
  box-shadow:
    0 0 0 1px rgba(255, 173, 78, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
/* Gradient glow no fundo do card */
#oferta .offer-card > * { position: relative; z-index: 1; }
#oferta .offer-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(255, 173, 78, 0.11) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Linha brilhante no topo do card */
#oferta .offer-card::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 173, 78, 0.75), transparent);
  pointer-events: none;
  z-index: 0;
}
/* Hover: lift sutil */
#oferta .offer-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(255, 173, 78, 0.14),
    0 48px 100px rgba(0, 0, 0, 0.60),
    0 0 72px rgba(255, 173, 78, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* CTA: full-width + glow forte */
#oferta .cta-primary--xl {
  width: 100%;
  justify-content: center;
  padding: 20px 32px;
  font-size: clamp(16px, 2vw, 18px);
  box-shadow: 0 8px 36px rgba(255, 173, 78, 0.38);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
#oferta .cta-primary--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 56px rgba(255, 173, 78, 0.60), 0 12px 40px rgba(255, 173, 78, 0.42);
}

/* How it works: numbered circles */
#oferta .how-it-works {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  padding: 36px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.033);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
#oferta .how-it-works:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 173, 78, 0.20);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.30),
    0 0 0 1px rgba(255, 173, 78, 0.10);
}
#oferta .how-it-works h3 {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
#oferta .how-it-works ol {
  list-style: none;
  padding-left: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#oferta .how-it-works li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 24px;
  position: relative;
}
#oferta .how-it-works li:last-child { padding-bottom: 0; }
#oferta .how-it-works li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(255, 173, 78, 0.12);
  border: 1px solid rgba(255, 173, 78, 0.38);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 11px;
  color: var(--color-accent);
  margin-top: 1px;
}
/* Linha conectora entre steps */
#oferta .how-it-works li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 173, 78, 0.28) 0%, transparent 100%);
}

@media (max-width: 767px) {
  #oferta .offer-card { padding: 44px 28px; border-radius: 20px; }
  #oferta .how-it-works { padding: 28px 24px; }
}

/* ====================== 37. DOBRA 12 — GARANTIA (v2) ====================== */

/* Fundo: radial glow centrado sob o selo */
#garantia {
  position: relative;
  overflow: hidden;
}
#garantia::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 173, 78, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
#garantia .container { position: relative; }

/* Seal: pulse de aura via drop-shadow na imagem */
@keyframes sealAura {
  0%, 100% {
    filter:
      drop-shadow(0 0 16px rgba(255, 173, 78, 0.30))
      drop-shadow(0 8px 24px rgba(16, 42, 44, 0.15));
  }
  50% {
    filter:
      drop-shadow(0 0 32px rgba(255, 173, 78, 0.55))
      drop-shadow(0 8px 32px rgba(16, 42, 44, 0.20));
  }
}
#garantia .guarantee-seal img {
  animation: sealAura 3000ms ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  #garantia .guarantee-seal img { animation: none; }
}

/* Strong no texto: highlight ouro sutil */
#garantia .section-body strong {
  background-image: linear-gradient(transparent 72%, rgba(255, 173, 78, 0.28) 72%);
  background-repeat: no-repeat;
  padding-right: 2px;
}

/* Anchor-quote: gold bar acima */
#garantia .anchor-quote::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ====================== 38. DOBRA 13 — AUTORIDADE (v2) ====================== */

/* Fundo: radial glows nas laterais */
#autoridade {
  position: relative;
  overflow: hidden;
}
#autoridade::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(255, 173, 78, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 20%, rgba(255, 173, 78, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
#autoridade .container { position: relative; }

/* Foto: cantos ouro + sombra profunda */
#autoridade .authority__photo {
  overflow: visible;
  background: none;
}
#autoridade .authority__photo::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  width: 44px; height: 44px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-radius: 0 8px 0 0;
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}
#autoridade .authority__photo::after {
  content: '';
  position: absolute;
  bottom: -8px; left: -8px;
  width: 44px; height: 44px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 0 0 8px;
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}
#autoridade .authority__photo img {
  border-radius: var(--radius-card);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 173, 78, 0.12);
}

/* Números: glow dourado + separador vertical */
#autoridade .authority__numbers li {
  position: relative;
}
#autoridade .authority__numbers li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
#autoridade .authority__number {
  text-shadow: 0 0 32px rgba(255, 173, 78, 0.45);
}

/* Quote: glassmorphism */
#autoridade .authority__quote {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
}
#autoridade .authority__quote::before {
  content: '\201C';
  position: absolute;
  top: -8px; right: 16px;
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.10;
  pointer-events: none;
  user-select: none;
}

/* ====================== 39. DOBRA 14 — FAQ + FOOTER (v2) ====================== */

/* Fundo: radial warm */
#faq {
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(255, 173, 78, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(16, 42, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
#faq .container { position: relative; }

/* WhatsApp button: glow verde */
#faq .cta-secondary--whatsapp {
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.30);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
#faq .cta-secondary--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.50), 0 12px 32px rgba(37, 211, 102, 0.30);
}

/* FAQ item: hover + open refinados */
#faq .faq-item:hover {
  border-color: rgba(255, 173, 78, 0.25);
  box-shadow: 0 4px 20px rgba(16, 42, 44, 0.08);
}
#faq .faq-item[open] {
  border-color: rgba(255, 173, 78, 0.35);
  background: rgba(255, 173, 78, 0.025);
  box-shadow: 0 8px 32px rgba(16, 42, 44, 0.10);
}
#faq .faq-item[open] summary {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(255, 173, 78, 0.12);
  padding-bottom: 18px;
  margin-bottom: 4px;
}

/* Gold bar esquerda quando aberto */
#faq .faq-item[open] {
  border-left: 3px solid var(--color-accent);
}

/* Animação de abertura do corpo */
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
#faq .faq-item[open] .faq-item__body {
  animation: faqOpen 0.28s var(--ease-out-expo) both;
}
@media (prefers-reduced-motion: reduce) {
  #faq .faq-item[open] .faq-item__body { animation: none; }
}

/* Footer: linha ouro no topo + bird mais presente */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 173, 78, 0.35), transparent);
}
.site-footer__bird { opacity: 0.85; }
