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

:root {
  /* Paleta */
  --color-bg-light: #F4F1EA;        /* off-white quente */
  --color-bg-sage: #E4ECE2;         /* sage muito claro */
  --color-bg-cream: #EFEAE0;        /* bege claro */

  --color-ink-900: #1F3D32;         /* verde profundo (títulos) */
  --color-ink-700: #2D5443;         /* verde escuro */
  --color-ink-600: #4A5D54;         /* verde acinzentado */
  --color-ink-500: #6B7F75;         /* texto secundário */

  --color-accent: #7BA68C;          /* sage médio */
  --color-accent-dark: #5C7A6B;     /* verde petróleo */
  --color-warm: #D4A574;            /* bege quente (destaque) */
  --color-warm-soft: #E8C99B;       /* bege claro */

  --color-white: #FFFFFF;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(31, 61, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 61, 50, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 61, 50, 0.15);
  --shadow-cta: 0 12px 30px rgba(31, 61, 50, 0.22);
  --shadow-mockup: 0 40px 80px rgba(31, 61, 50, 0.18);

  /* Tipografia */
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamentos */
  --container-max: 1240px;
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink-700);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Acessibilidade + economia de CPU em devices lentos */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ========================================
   REVEAL ON SCROLL — GPU-friendly
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cascata — cada filho entra com delay incremental */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: 0.56s; }
.reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: 0.64s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: 0.72s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hover scale sutil em imagens */
.benefit-card,
.audience-card,
.deliverable,
.bonus-card,
.proof-card {
  /* já têm hover lift; nada a fazer */
}

.deliverable__image,
.bonus-card__image {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.deliverable:hover .deliverable__image,
.bonus-card:hover .bonus-card__image {
  transform: scale(1.025);
}

/* Quando reduced motion, anula o reveal */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

ul {
  list-style: none;
}


/* ========================================
   BLOCO 1 — HERO
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 80px;
  background:
    radial-gradient(ellipse at top left, rgba(123, 166, 140, 0.10), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(212, 165, 116, 0.08), transparent 55%),
    linear-gradient(160deg, #F4F1EA 0%, #EAEFE5 100%);
}

/* Blobs decorativos */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__blob--tl {
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.35), transparent 70%);
}

.hero__blob--br {
  bottom: -150px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 70%);
}

/* Container */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ----- Coluna texto ----- */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Eyebrow — glass badge premium */
.hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

/* Highlight superior do vidro */
.hero__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

/* Reflexo lateral muito sutil */
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.hero__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.5));
}

/* Título */
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 5.8vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--color-ink-900);
  max-width: 720px;
  text-wrap: balance;
  -webkit-hyphens: none;
  hyphens: none;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.hero__title-highlight {
  position: relative;
  display: inline;
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Subtítulo */
.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.65vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 600px;
}

/* CTA — gradiente premium full-width com animação fluida */
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 680px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  will-change: transform, box-shadow;
}

.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.hero__cta:hover::before {
  opacity: 1;
}

.hero__cta:hover::after {
  left: 125%;
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(6px);
}

.hero__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.hero__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* Prova social — estilo compacto, inline */
.hero__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.hero__avatars {
  display: flex;
  flex-shrink: 0;
}

.hero__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--color-white);
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-sage);
  box-shadow: 0 1px 3px rgba(31, 61, 50, 0.12);
}

.hero__avatar:not(:first-child) {
  margin-left: -7px;
}

.hero__social-text {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--color-ink-600);
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: -0.005em;
}

.hero__social-text strong {
  color: var(--color-ink-900);
  font-weight: 600;
}

/* ----- Coluna do produto ----- */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Versão mobile (abaixo da subheadline) */
.hero__visual--mobile {
  display: flex;
  margin: 8px 0;
  width: 100%;
  max-width: 380px;
  align-self: center;
}

/* Versão desktop (ao lado direito) — oculta no mobile */
.hero__visual--desktop {
  display: none;
}

.hero__product {
  position: relative;
  width: 100%;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Halo de luz por trás do produto */
.hero__product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background:
    radial-gradient(ellipse 65% 60% at center,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(160, 200, 175, 0.25) 30%,
      rgba(123, 166, 140, 0.12) 55%,
      transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.hero__product-image {
  position: relative;
  z-index: 1;
  width: 110%;
  max-width: 110%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 48px rgba(31, 61, 50, 0.18))
    drop-shadow(0 8px 16px rgba(31, 61, 50, 0.10));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ========================================
   DIVISOR DE SEÇÃO — LINHA REFINADA
   ======================================== */
.section-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  pointer-events: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Linha gradiente que afina nas pontas e tem mais peso no centro */
.section-divider__line {
  width: min(88%, 1100px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(31, 61, 50, 0) 0%,
    rgba(31, 61, 50, 0.08) 20%,
    rgba(31, 61, 50, 0.18) 40%,
    rgba(31, 61, 50, 0.22) 50%,
    rgba(31, 61, 50, 0.18) 60%,
    rgba(31, 61, 50, 0.08) 80%,
    rgba(31, 61, 50, 0) 100%);
}

/* Esconde o glow — agora só a linha */
.section-divider__glow {
  display: none;
}

/* ========================================
   BLOCO 2 — BENEFÍCIOS
   ======================================== */
.benefits {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top right, rgba(123, 166, 140, 0.08), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.05), transparent 55%),
    linear-gradient(180deg, #EAEFE5 0%, #F4F1EA 60%, #EFEAE0 100%);
}

.benefits__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.benefits__blob--tr {
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.30), transparent 70%);
}

.benefits__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header do bloco */
.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.benefits__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.benefits__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.benefits__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.benefits__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.benefits__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.benefits__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 640px;
  text-wrap: pretty;
}

/* Grid de cards */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Card */
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 8px 24px rgba(31, 61, 50, 0.06),
    0 20px 48px rgba(31, 61, 50, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 166, 140, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 14px 30px rgba(31, 61, 50, 0.08),
    0 30px 60px rgba(31, 61, 50, 0.06);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(135deg,
      rgba(123, 166, 140, 0.18) 0%,
      rgba(92, 122, 107, 0.10) 100%);
  border: 1px solid rgba(123, 166, 140, 0.22);
  color: var(--color-ink-700);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 2px 6px rgba(31, 61, 50, 0.04);
  flex-shrink: 0;
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--color-ink-900);
  font-variation-settings: "opsz" 36, "SOFT" 80;
}

.benefit-card__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-ink-600);
  text-wrap: pretty;
}

/* CTA do bloco */
.benefits__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.benefits__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.benefits__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.benefits__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.benefits__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.benefits__cta:hover::before {
  opacity: 1;
}

.benefits__cta:hover::after {
  left: 125%;
}

.benefits__cta:hover .benefits__cta-arrow {
  transform: translateX(6px);
}

.benefits__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.benefits__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 3 — PROVA SOCIAL (PRINTS)
   ======================================== */
.proof {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.05), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(123, 166, 140, 0.08), transparent 55%),
    linear-gradient(180deg, #EFEAE0 0%, #F4F1EA 50%, #EAEFE5 100%);
}

.proof__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.proof__blob--tl {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 70%);
}

.proof__blob--br {
  bottom: -150px;
  right: -110px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.22), transparent 70%);
}

.proof__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.proof__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.proof__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.proof__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.proof__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.proof__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.proof__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.proof__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.proof__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 640px;
  text-wrap: pretty;
}

/* Selo de prova social — estrelas + avatares + contagem */
.proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding: 12px 22px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.40) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 8px 24px rgba(31, 61, 50, 0.06),
    0 16px 40px rgba(31, 61, 50, 0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.proof__rating::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

/* Estrelas */
.proof__rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.proof__rating-star {
  filter: drop-shadow(0 1px 2px rgba(31, 61, 50, 0.18));
  flex-shrink: 0;
}

/* Divisor sutil entre estrelas e avatares */
.proof__rating-avatars {
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  border-left: 1px solid rgba(123, 166, 140, 0.25);
}

.proof__rating-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-sage);
  box-shadow: 0 2px 6px rgba(31, 61, 50, 0.12);
  flex-shrink: 0;
}

.proof__rating-avatar:not(:first-child) {
  margin-left: -8px;
}

/* Texto da avaliação */
.proof__rating-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding-left: 4px;
  font-family: var(--font-sans);
  line-height: 1.3;
  text-align: left;
}

.proof__rating-text strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--color-ink-900);
  white-space: nowrap;
}

.proof__rating-text span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-ink-500);
  white-space: nowrap;
}

/* Grid de prints — masonry via CSS columns (mobile: 1 col) */
.proof__grid {
  column-count: 1;
  column-gap: 16px;
}

/* Card de print — glass envolvendo a imagem */
.proof-card {
  position: relative;
  display: block;
  padding: 10px;
  margin: 0 0 16px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 8px 22px rgba(31, 61, 50, 0.06),
    0 20px 44px rgba(31, 61, 50, 0.04);
  overflow: hidden;
  isolation: isolate;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease;
}

.proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 166, 140, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 14px 28px rgba(31, 61, 50, 0.08),
    0 30px 56px rgba(31, 61, 50, 0.06);
}

/* Imagem do print */
.proof-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #EAEFE5;
}

/* Variantes — wide (feedbacks horizontais) e compact (comentários pequenos) */
.proof-card--wide {
  padding: 12px 14px;
}

.proof-card--compact {
  padding: 10px 14px;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(31, 61, 50, 0.03),
    0 6px 18px rgba(31, 61, 50, 0.05),
    0 16px 36px rgba(31, 61, 50, 0.03);
}

.proof-card--compact .proof-card__image {
  border-radius: 8px;
}

/* CTA do bloco */
.proof__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.proof__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.proof__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.proof__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.proof__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.proof__cta:hover::before {
  opacity: 1;
}

.proof__cta:hover::after {
  left: 125%;
}

.proof__cta:hover .proof__cta-arrow {
  transform: translateX(6px);
}

.proof__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.proof__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 4 — PARA QUEM É (PROFISSÕES)
   ======================================== */
.audience {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top right, rgba(123, 166, 140, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.06), transparent 55%),
    linear-gradient(180deg, #EAEFE5 0%, #F4F1EA 50%, #EFEAE0 100%);
}

.audience__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.audience__blob--tr {
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.28), transparent 70%);
}

.audience__blob--bl {
  bottom: -180px;
  left: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 70%);
}

.audience__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.audience__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.audience__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.audience__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.audience__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.audience__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.audience__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.audience__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.audience__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 680px;
  text-wrap: pretty;
}

/* Grid de profissões */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Card de profissão — glass premium com borda gradiente interna */
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.64) 100%);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 10px 28px rgba(31, 61, 50, 0.06),
    0 24px 56px rgba(31, 61, 50, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease;
}

/* Highlight superior */
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

/* Detalhe decorativo no canto — gradiente sage suave */
.audience-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(123, 166, 140, 0.18) 0%,
    rgba(123, 166, 140, 0) 70%);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.55s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(123, 166, 140, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 18px 36px rgba(31, 61, 50, 0.08),
    0 36px 70px rgba(31, 61, 50, 0.06);
}

.audience-card:hover::after {
  transform: scale(1.4) translate(-10px, 10px);
}

/* Wrapper do ícone com gradiente sage premium */
.audience-card__icon-wrap {
  position: relative;
  display: inline-flex;
}

.audience-card__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(135deg,
      rgba(123, 166, 140, 0.22) 0%,
      rgba(92, 122, 107, 0.14) 100%);
  border: 1px solid rgba(123, 166, 140, 0.28);
  color: var(--color-ink-700);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(31, 61, 50, 0.05),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 6px 14px rgba(31, 61, 50, 0.04);
  isolation: isolate;
}

.audience-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.audience-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--color-ink-900);
  font-variation-settings: "opsz" 48, "SOFT" 80;
}

.audience-card__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-ink-600);
  text-wrap: pretty;
}

/* Frase de fechamento — tratamento editorial */
.audience__closing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 0 8px;
}

.audience__closing-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(31, 61, 50, 0.35),
    transparent);
}

.audience__closing-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--color-ink-900);
  text-align: center;
  max-width: 720px;
  text-wrap: balance;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}

.audience__closing-text em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

/* CTA do bloco */
.audience__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.audience__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.audience__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.audience__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.audience__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.audience__cta:hover::before {
  opacity: 1;
}

.audience__cta:hover::after {
  left: 125%;
}

.audience__cta:hover .audience__cta-arrow {
  transform: translateX(6px);
}

.audience__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.audience__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 5 — SOBRE A AUTORA
   ======================================== */
.author {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.08), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(123, 166, 140, 0.10), transparent 55%),
    linear-gradient(180deg, #EFEAE0 0%, #F4F1EA 40%, #EAEFE5 100%);
}

.author__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.author__blob--tl {
  top: -160px;
  left: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22), transparent 70%);
}

.author__blob--br {
  bottom: -180px;
  right: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.26), transparent 70%);
}

.author__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* ----- Coluna da imagem ----- */
.author__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.author__image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Halo de luz por trás da foto */
.author__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  background: radial-gradient(ellipse 65% 75% at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.25) 35%,
    rgba(123, 166, 140, 0.10) 60%,
    transparent 80%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Luz quente vindo de baixo — forte, sobe até a metade da foto */
.author__image-frame::after {
  content: '';
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 85%;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%,
      rgba(255, 248, 235, 1) 0%,
      rgba(248, 244, 232, 0.95) 18%,
      rgba(244, 241, 234, 0.75) 35%,
      rgba(238, 235, 225, 0.5) 55%,
      rgba(234, 239, 229, 0.22) 75%,
      transparent 90%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 2;
}

/* Luz lateral sutil envolvente */
.author__image-frame::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -8%;
  right: -8%;
  bottom: 0;
  background:
    radial-gradient(ellipse 25% 90% at 0% 70%,
      rgba(244, 241, 234, 0.7) 0%,
      rgba(244, 241, 234, 0.25) 35%,
      transparent 65%),
    radial-gradient(ellipse 25% 90% at 100% 70%,
      rgba(244, 241, 234, 0.7) 0%,
      rgba(244, 241, 234, 0.25) 35%,
      transparent 65%);
  filter: blur(15px);
  pointer-events: none;
  z-index: 2;
}

/* Wrapper que contém a imagem + os gradientes de fade */
.author__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.author__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(31, 61, 50, 0.12));

  /* Máscara de fade — dissolução forte na metade inferior, topo limpo */
  -webkit-mask-image:
    linear-gradient(180deg,
      black 0%,
      black 42%,
      rgba(0, 0, 0, 0.85) 52%,
      rgba(0, 0, 0, 0.5) 64%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0.06) 88%,
      transparent 96%),
    linear-gradient(90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 5%,
      black 14%,
      black 86%,
      rgba(0, 0, 0, 0.4) 95%,
      transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg,
      black 0%,
      black 42%,
      rgba(0, 0, 0, 0.85) 52%,
      rgba(0, 0, 0, 0.5) 64%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0.06) 88%,
      transparent 96%),
    linear-gradient(90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 5%,
      black 14%,
      black 86%,
      rgba(0, 0, 0, 0.4) 95%,
      transparent 100%);
  mask-composite: intersect;
}

/* Fades desabilitados — o mix-blend-mode faz o trabalho de funder a imagem */
.author__image-fade-bottom,
.author__image-fade-top,
.author__image-fade-left,
.author__image-fade-right {
  display: none;
}

/* ----- Coluna do conteúdo ----- */
.author__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.author__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.author__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.author__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.author__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.author__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  max-width: 580px;
}

.author__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.author__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-ink-600);
  max-width: 540px;
  text-wrap: pretty;
}

.author__text p {
  margin: 0;
}

.author__text strong {
  color: var(--color-ink-900);
  font-weight: 600;
}

.author__crp {
  display: inline-block;
  margin-left: 2px;
  padding: 1px 7px;
  background: rgba(123, 166, 140, 0.12);
  border: 1px solid rgba(123, 166, 140, 0.22);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent-dark);
  vertical-align: middle;
  white-space: nowrap;
}

/* Citação destacada */
.author__quote {
  position: relative;
  margin-top: 6px;
  padding: 24px 22px 22px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 10px 24px rgba(31, 61, 50, 0.05);
  overflow: hidden;
  isolation: isolate;
}

.author__quote::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.author__quote-mark {
  display: flex;
  justify-content: center;
  color: var(--color-accent);
  opacity: 0.7;
  margin-bottom: 8px;
}

.author__quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(16.5px, 1.85vw, 19px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--color-ink-900);
  text-align: center;
  margin: 0;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}

.author__quote em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

/* Assinatura */
.author__signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.author__signature-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(31, 61, 50, 0.35),
    transparent);
  margin-bottom: 8px;
}

.author__signature-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-ink-900);
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

.author__signature-role {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink-500);
}

/* ========================================
   BLOCO 6 — O QUE VOCÊ RECEBE
   ======================================== */
.deliverables {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top right, rgba(123, 166, 140, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.08), transparent 55%),
    linear-gradient(180deg, #EAEFE5 0%, #F4F1EA 50%, #EFEAE0 100%);
}

.deliverables__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.deliverables__blob--tr {
  top: -180px;
  right: -130px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.28), transparent 70%);
}

.deliverables__blob--bl {
  bottom: -200px;
  left: -140px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22), transparent 70%);
}

.deliverables__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.deliverables__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.deliverables__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.deliverables__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.deliverables__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.deliverables__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.deliverables__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.deliverables__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.deliverables__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 680px;
  text-wrap: pretty;
}

/* Lista de entregáveis */
.deliverables__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Card de entregável */
.deliverable {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px 24px 30px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 14px 32px rgba(31, 61, 50, 0.06),
    0 28px 64px rgba(31, 61, 50, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.deliverable::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.deliverable::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(123, 166, 140, 0.16) 0%,
    rgba(123, 166, 140, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* Conteúdo */
.deliverable__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  order: 2;
}

/* Tag de numeração */
.deliverable__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(123, 166, 140, 0.25);
  border-radius: 100px;
  align-self: flex-start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(31, 61, 50, 0.04);
}

.deliverable__tag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 4px rgba(31, 61, 50, 0.15);
}

.deliverable__tag-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  white-space: nowrap;
}

/* Título do entregável */
.deliverable__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 72, "SOFT" 80;
  margin-top: 2px;
}

.deliverable__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-600);
  text-wrap: pretty;
}

/* Lista de bullets com check */
.deliverable__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.deliverable__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-ink-700);
}

.deliverable__list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-accent);
  padding: 3px;
  background: rgba(123, 166, 140, 0.14);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

/* Lista de 6 blocos (Parte 3) */
.deliverable__blocks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.deliverable__blocks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(234, 239, 229, 0.45) 100%);
  border: 1px solid rgba(123, 166, 140, 0.18);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-700);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}

.deliverable__blocks li:hover {
  transform: translateX(3px);
  border-color: rgba(123, 166, 140, 0.4);
}

.deliverable__blocks-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7BA68C 0%, #5C7A6B 100%);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(31, 61, 50, 0.12);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}

/* Visual / Imagem */
.deliverable__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  order: 1;
  padding: 8px;
}

.deliverable__visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 70%;
  background: radial-gradient(ellipse 65% 70% at center,
    rgba(123, 166, 140, 0.18) 0%,
    rgba(123, 166, 140, 0.06) 50%,
    transparent 80%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.deliverable__image {
  position: relative;
  z-index: 1;
  width: 110%;
  max-width: 110%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(31, 61, 50, 0.10))
    drop-shadow(0 4px 8px rgba(31, 61, 50, 0.06));
}

/* Card de critérios (Parte 2) — alternativa visual sem imagem */
.deliverable__visual--criteria {
  padding: 24px;
}

.deliverable__criteria-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.65) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(31, 61, 50, 0.06),
    0 18px 40px rgba(31, 61, 50, 0.05);
}

.deliverable__criteria-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-ink-700);
}

.deliverable__criteria-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 1px 3px rgba(31, 61, 50, 0.18);
}

.deliverable__criteria-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(31, 61, 50, 0.15),
    rgba(31, 61, 50, 0.04));
  min-width: 16px;
  max-width: 60px;
}

/* Frase de fechamento */
.deliverables__closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 0 8px;
}

.deliverables__closing-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(31, 61, 50, 0.35),
    transparent);
}

.deliverables__closing-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--color-ink-900);
  text-align: center;
  max-width: 760px;
  text-wrap: balance;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}

.deliverables__closing-text em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

/* CTA */
.deliverables__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.deliverables__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.deliverables__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.deliverables__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.deliverables__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.deliverables__cta:hover::before {
  opacity: 1;
}

.deliverables__cta:hover::after {
  left: 125%;
}

.deliverables__cta:hover .deliverables__cta-arrow {
  transform: translateX(6px);
}

.deliverables__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.deliverables__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 7 — BÔNUS
   ======================================== */
.bonus {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.12), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(123, 166, 140, 0.10), transparent 55%),
    linear-gradient(180deg, #EFEAE0 0%, #F4F1EA 50%, #EAEFE5 100%);
}

.bonus__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bonus__blob--tl {
  top: -160px;
  left: -130px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.30), transparent 70%);
}

.bonus__blob--br {
  bottom: -180px;
  right: -130px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.24), transparent 70%);
}

.bonus__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.bonus__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bonus__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(220, 235, 226, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3e7762;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(94, 135, 115, 0.12),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.bonus__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.bonus__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.bonus__eyebrow-icon {
  color: #5e8773;
  flex-shrink: 0;
}

.bonus__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.bonus__title-highlight {
  background: linear-gradient(110deg,
    #6BA890 0%,
    #3e7762 38%,
    #265A48 68%,
    #4D8975 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.bonus__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 680px;
  text-wrap: pretty;
}

/* Grid dos bônus */
.bonus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Card de bônus — premium */
.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 14px 32px rgba(31, 61, 50, 0.07),
    0 30px 70px rgba(31, 61, 50, 0.05);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease;
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

/* Borda interna verde-teal sutil */
.bonus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg,
    rgba(107, 168, 144, 0.4) 0%,
    rgba(107, 168, 144, 0) 30%,
    rgba(107, 168, 144, 0) 70%,
    rgba(107, 168, 144, 0.30) 100%) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 22px 44px rgba(31, 61, 50, 0.10),
    0 40px 90px rgba(31, 61, 50, 0.07);
}

/* Visual do bônus */
.bonus-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 20px;
  min-height: 240px;
  overflow: visible;
}

/* Badge "Bônus 01/02" — verde-teal premium */
.bonus-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background:
    linear-gradient(135deg, #6BA890 0%, #3e7762 50%, #265A48 100%);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(38, 90, 72, 0.32),
    0 1px 3px rgba(38, 90, 72, 0.22);
  z-index: 3;
}

.bonus-card__badge svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* Halo de luz por trás da imagem */
.bonus-card__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 80%;
  background: radial-gradient(ellipse 60% 65% at center,
    rgba(107, 168, 144, 0.22) 0%,
    rgba(107, 168, 144, 0.08) 50%,
    transparent 80%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.bonus-card__image {
  position: relative;
  z-index: 1;
  width: 115%;
  max-width: 115%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 32px rgba(31, 61, 50, 0.12))
    drop-shadow(0 6px 10px rgba(31, 61, 50, 0.07));
}

/* Conteúdo do bônus */
.bonus-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 28px 32px;
}

.bonus-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.014em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 48, "SOFT" 80;
}

.bonus-card__title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg,
    #6BA890 0%,
    #3e7762 50%,
    #265A48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}

.bonus-card__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-600);
  text-wrap: pretty;
}

.bonus-card__divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(107, 168, 144, 0.4) 30%,
    rgba(107, 168, 144, 0.4) 70%,
    transparent);
  margin: 6px 0 4px;
}

.bonus-card__list-label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3e7762;
}

.bonus-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bonus-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink-700);
}

.bonus-card__list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: #3e7762;
  padding: 3px;
  background: rgba(107, 168, 144, 0.18);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

/* Frase de fechamento */
.bonus__closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding: 0 8px;
}

.bonus__closing-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(107, 168, 144, 0.5),
    transparent);
}

.bonus__closing-text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  color: var(--color-ink-900);
  text-align: center;
  max-width: 720px;
  text-wrap: balance;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}

.bonus__closing-text em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg,
    #6BA890 0%,
    #3e7762 50%,
    #265A48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

/* CTA */
.bonus__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.bonus__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 20px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 10px 24px rgba(31, 61, 50, 0.25),
    0 2px 6px rgba(31, 61, 50, 0.15);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.bonus__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.bonus__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.bonus__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 18px 36px rgba(31, 61, 50, 0.32),
    0 6px 14px rgba(31, 61, 50, 0.18);
}

.bonus__cta:hover::before {
  opacity: 1;
}

.bonus__cta:hover::after {
  left: 125%;
}

.bonus__cta:hover .bonus__cta-arrow {
  transform: translateX(6px);
}

.bonus__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.bonus__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 8 — OFERTA
   ======================================== */
.offer {
  position: relative;
  overflow: hidden;
  padding: 80px 20px 96px;
  background:
    radial-gradient(ellipse at top, rgba(123, 166, 140, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(212, 165, 116, 0.08), transparent 55%),
    linear-gradient(180deg, #EAEFE5 0%, #F4F1EA 50%, #EFEAE0 100%);
}

.offer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.offer__blob--tl {
  top: -180px;
  left: -130px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.30), transparent 70%);
}

.offer__blob--br {
  bottom: -200px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 70%);
}

.offer__blob--c {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.10), transparent 70%);
}

.offer__container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

/* Header */
.offer__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.offer__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.offer__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.offer__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.offer__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.offer__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.offer__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.offer__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14.5px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 620px;
  text-wrap: pretty;
}

/* CARD DE OFERTA — verde gradient editorial premium */
.offer-card {
  position: relative;
  border-radius: 28px;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(180, 220, 195, 0.65) 0%,
    rgba(123, 166, 140, 0.40) 18%,
    rgba(255, 255, 255, 0.22) 38%,
    rgba(74, 122, 99, 0.30) 58%,
    rgba(160, 200, 175, 0.50) 78%,
    rgba(212, 230, 196, 0.45) 100%);
  box-shadow:
    0 1px 3px rgba(15, 40, 28, 0.10),
    0 24px 50px rgba(15, 40, 28, 0.22),
    0 48px 110px rgba(15, 40, 28, 0.24);
  isolation: isolate;
}

.offer-card__inner {
  position: relative;
  padding: 36px 26px;
  border-radius: 27px;
  background:
    /* Aurora — luz suave verde-claro no topo esquerdo */
    radial-gradient(ellipse 70% 50% at 15% 0%,
      rgba(180, 220, 195, 0.22) 0%,
      rgba(160, 200, 175, 0.10) 30%,
      transparent 65%),
    /* Verde médio-vibrante no centro-direito superior */
    radial-gradient(ellipse 60% 50% at 85% 15%,
      rgba(98, 152, 124, 0.32) 0%,
      rgba(74, 122, 99, 0.18) 35%,
      transparent 70%),
    /* Glow quente sage profundo no rodapé direito */
    radial-gradient(ellipse 75% 60% at 95% 95%,
      rgba(74, 122, 99, 0.42) 0%,
      rgba(45, 84, 67, 0.24) 35%,
      transparent 70%),
    /* Sombra profunda no canto inferior esquerdo */
    radial-gradient(ellipse 60% 60% at 5% 100%,
      rgba(13, 32, 23, 0.40) 0%,
      rgba(22, 48, 36, 0.18) 40%,
      transparent 75%),
    /* Mesh gradient base — 4 paradas com tons modulados */
    linear-gradient(165deg,
      #2F5847 0%,
      #244635 28%,
      #1A3527 55%,
      #1F3D32 78%,
      #143024 100%);
  border-radius: 27px;
  overflow: hidden;
  color: #F0F5EE;
}

/* Highlight superior — luz incidindo do alto */
.offer-card__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.04) 18%,
      rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
  z-index: 1;
}

/* Camada de textura sutil — película luminosa em diagonal */
.offer-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    /* Vinheta sutil nas bordas */
    radial-gradient(ellipse 120% 100% at 50% 50%,
      transparent 50%,
      rgba(13, 32, 23, 0.18) 100%),
    /* Reflexo diagonal de luz */
    linear-gradient(115deg,
      transparent 0%,
      transparent 38%,
      rgba(180, 220, 195, 0.06) 50%,
      transparent 62%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Orbe decorativo flutuante — superior direito */
.offer-card__inner > .offer-card__orb-tr {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(200, 230, 210, 0.22) 0%,
    rgba(160, 200, 175, 0.10) 30%,
    rgba(160, 200, 175, 0) 70%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}

/* Orbe decorativo flutuante — inferior esquerdo */
.offer-card__inner > .offer-card__orb-bl {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%,
    rgba(98, 152, 124, 0.24) 0%,
    rgba(74, 122, 99, 0.10) 40%,
    rgba(74, 122, 99, 0) 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Visual */
.offer-card__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  margin-bottom: 8px;
}

.offer-card__visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 85%;
  background: radial-gradient(ellipse 60% 65% at center,
    rgba(255, 255, 255, 0.20) 0%,
    rgba(160, 200, 175, 0.18) 35%,
    rgba(160, 200, 175, 0.06) 60%,
    transparent 85%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.offer-card__image {
  position: relative;
  z-index: 1;
  width: 115%;
  max-width: 115%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

/* Body */
.offer-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.offer-card__product {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #F8FAF6;
  text-align: center;
  text-wrap: balance;
  font-variation-settings: "opsz" 48, "SOFT" 80;
  max-width: 460px;
  margin: 0 auto;
}

/* Pricing — apresentação editorial premium */
.offer-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 22px 30px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(160, 200, 175, 0.18);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 1px 2px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Linha 1 — "De R$ 97,00" */
.offer-card__price-anchor {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-sans);
}

.offer-card__price-from {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(220, 230, 222, 0.60);
  font-variation-settings: "opsz" 36, "SOFT" 100;
  letter-spacing: 0.005em;
}

.offer-card__price-old {
  position: relative;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: rgba(220, 230, 222, 0.55);
  letter-spacing: 0.005em;
}

.offer-card__price-old::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -4%;
  right: -4%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(220, 230, 222, 0.50) 15%,
    rgba(220, 230, 222, 0.70) 50%,
    rgba(220, 230, 222, 0.50) 85%,
    transparent 100%);
  transform: rotate(-7deg);
  pointer-events: none;
}

/* Linha 2 — "por apenas" com hairlines decorativas */
.offer-card__price-byline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.offer-card__price-byline-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.40) 50%,
    transparent);
}

.offer-card__price-byline-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(200, 230, 210, 0.85);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  text-transform: lowercase;
  white-space: nowrap;
}

.offer-card__price-main {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1;
  margin-top: 4px;
}

.offer-card__price-currency {
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.4vw, 40px);
  font-weight: 600;
  color: #DCE9DF;
  letter-spacing: -0.01em;
  padding-top: 18px;
}

.offer-card__price-value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(120px, 18vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8F0E5 35%,
    #C8D9CC 70%,
    #A0C8AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(160, 200, 175, 0.30));
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

.offer-card__price-cents {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 600;
  color: #DCE9DF;
  letter-spacing: -0.01em;
  padding-top: 20px;
}

/* Divisor "O que você recebe hoje" */
.offer-card__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
}

.offer-card__divider::before,
.offer-card__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.28) 50%,
    transparent);
}

.offer-card__divider-text {
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A0C8AF;
}

/* Lista */
.offer-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.offer-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.offer-card__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(160, 200, 175, 0.22) 0%,
    rgba(123, 166, 140, 0.12) 100%);
  border: 1px solid rgba(160, 200, 175, 0.35);
  color: #C8E6D2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.10);
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-card__list-icon--bonus {
  background: linear-gradient(135deg,
    rgba(160, 200, 175, 0.30) 0%,
    rgba(123, 166, 140, 0.18) 100%);
  border: 1px solid rgba(160, 200, 175, 0.40);
  color: #DCEFE2;
}

.offer-card__list-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
}

.offer-card__list-content strong {
  font-weight: 600;
  font-size: 14px;
  color: #F0F5EE;
}

.offer-card__list-content span {
  color: rgba(220, 230, 222, 0.7);
}

/* CTA — botão claro para contrastar com o card verde */
.offer-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 20px 32px;
  margin-top: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(135deg, #FFFFFF 0%, #F0F5EE 50%, #DCE9DF 100%);
  background-size: 100% 100%, 200% 200%;
  background-position: 0 0, 0% 50%;
  color: #1F3D32;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -2px 0 rgba(31, 61, 50, 0.08) inset,
    0 10px 24px rgba(0, 0, 0, 0.20),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.offer-card__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.offer-card__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.offer-card__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  background-position: 0 0, 100% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 -2px 0 rgba(31, 61, 50, 0.10) inset,
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.18);
}

.offer-card__cta:hover::before {
  opacity: 1;
}

.offer-card__cta:hover::after {
  left: 125%;
}

.offer-card__cta:hover .offer-card__cta-arrow {
  transform: translateX(6px);
}

.offer-card__cta:active {
  transform: translateY(-1px);
  transition-duration: 0.2s;
}

.offer-card__cta-arrow {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

/* Assurance microcopy — trio com dots refinado */
.offer-card__assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(220, 230, 222, 0.75);
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.offer-card__assurance > span:not(.offer-card__assurance-dot) {
  white-space: nowrap;
}

.offer-card__assurance-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(160, 200, 175, 0.55);
  flex-shrink: 0;
}

/* ========================================
   BLOCO 9 — GARANTIA
   ======================================== */
.guarantee {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 88px;
  background:
    radial-gradient(ellipse at top right, rgba(123, 166, 140, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.08), transparent 55%),
    linear-gradient(180deg, #EFEAE0 0%, #F4F1EA 50%, #EAEFE5 100%);
}

.guarantee__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.guarantee__blob--tl {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.22), transparent 70%);
}

.guarantee__blob--br {
  bottom: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.26), transparent 70%);
}

.guarantee__container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

/* Card de garantia — glass premium */
.guarantee-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 26px 36px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(31, 61, 50, 0.05),
    0 18px 40px rgba(31, 61, 50, 0.08),
    0 36px 80px rgba(31, 61, 50, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

/* ----- SELO 7 DIAS ----- */
.guarantee__seal-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee__seal {
  position: relative;
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: sealFloat 6s ease-in-out infinite;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Texto circular do selo */
.guarantee__seal-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: sealRotate 24s linear infinite;
}

@keyframes sealRotate {
  to { transform: rotate(360deg); }
}

.guarantee__seal-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.25em;
  fill: var(--color-accent-dark);
  text-transform: uppercase;
}

/* Núcleo central do selo */
.guarantee__seal-core {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #3a6a55 0%, #2d5443 50%, #1f3d32 100%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 6px 14px rgba(31, 61, 50, 0.25),
    0 14px 30px rgba(31, 61, 50, 0.18);
}

.guarantee__seal-core::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.guarantee__seal-number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F0E5 60%, #C8D9CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin-top: -4px;
}

.guarantee__seal-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(220, 230, 222, 0.95);
  margin-top: 2px;
}

/* Glow externo do selo */
.guarantee__seal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle,
    rgba(123, 166, 140, 0.30) 0%,
    rgba(123, 166, 140, 0.10) 40%,
    transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

/* ----- CONTEÚDO ----- */
.guarantee__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 620px;
}

.guarantee__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.guarantee__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.guarantee__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.guarantee__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.guarantee__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.guarantee__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.guarantee__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-ink-600);
  text-wrap: pretty;
  margin-top: 4px;
}

.guarantee__text p {
  margin: 0;
}

.guarantee__text strong {
  color: var(--color-ink-900);
  font-weight: 600;
}

/* Assinatura final com hairlines */
.guarantee__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  margin-top: 8px;
}

.guarantee__signature-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(31, 61, 50, 0.25) 50%,
    transparent);
}

.guarantee__signature-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--color-ink-700);
  white-space: nowrap;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}

/* ========================================
   BLOCO 10 — FAQ
   ======================================== */
.faq {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 96px;
  background:
    radial-gradient(ellipse at top right, rgba(123, 166, 140, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(212, 165, 116, 0.06), transparent 55%),
    linear-gradient(180deg, #EAEFE5 0%, #F4F1EA 50%, #EFEAE0 100%);
}

.faq__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.faq__blob--tr {
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 166, 140, 0.24), transparent 70%);
}

.faq__blob--bl {
  bottom: -180px;
  left: -130px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18), transparent 70%);
}

.faq__container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

/* Header */
.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.faq__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 13px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(234, 239, 229, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(123, 166, 140, 0.10),
    0 1px 2px rgba(31, 61, 50, 0.04),
    0 6px 16px rgba(31, 61, 50, 0.06),
    0 12px 32px rgba(31, 61, 50, 0.04);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.faq__eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: -1;
}

.faq__eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 60%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.faq__eyebrow-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.faq__title-highlight {
  background: linear-gradient(110deg,
    #7BA68C 0%,
    #2D5443 38%,
    #1F3D32 68%,
    #4A7A63 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.faq__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-ink-600);
  max-width: 580px;
  text-wrap: pretty;
}

/* Lista de FAQs */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Item do FAQ — accordion premium */
.faq-item {
  position: relative;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.62) 100%);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 3px rgba(31, 61, 50, 0.04),
    0 6px 18px rgba(31, 61, 50, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

.faq-item:hover {
  border-color: rgba(123, 166, 140, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 5px rgba(31, 61, 50, 0.05),
    0 10px 24px rgba(31, 61, 50, 0.06);
}

.faq-item[open] {
  border-color: rgba(123, 166, 140, 0.40);
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(234, 239, 229, 0.55) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(31, 61, 50, 0.05),
    0 14px 30px rgba(31, 61, 50, 0.08);
}

/* Summary (pergunta) */
.faq-item__summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq-item__summary::marker {
  display: none;
  content: '';
}

.faq-item__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
  color: var(--color-accent-dark);
  flex-shrink: 0;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  min-width: 22px;
}

.faq-item__question {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-ink-900);
  letter-spacing: -0.005em;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(135deg,
      rgba(123, 166, 140, 0.20) 0%,
      rgba(92, 122, 107, 0.12) 100%);
  border: 1px solid rgba(123, 166, 140, 0.25);
  color: var(--color-ink-700);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  background:
    linear-gradient(135deg,
      rgba(123, 166, 140, 0.35) 0%,
      rgba(92, 122, 107, 0.22) 100%);
}

/* Answer (resposta) */
.faq-item__answer {
  padding: 0 20px 20px 56px;
  position: relative;
  animation: faqOpen 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item__answer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(123, 166, 140, 0.30) 30%,
    rgba(123, 166, 140, 0.30) 70%,
    transparent);
}

.faq-item__answer p {
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink-600);
  text-wrap: pretty;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   BLOCO 11 — FOOTER
   ======================================== */
.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 36px;
  background:
    radial-gradient(ellipse at top left, rgba(160, 200, 175, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(74, 122, 99, 0.20), transparent 55%),
    linear-gradient(180deg,
      #2D5443 0%,
      #1F3D32 50%,
      #163024 100%);
  color: #DCE9DF;
  isolation: isolate;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.30) 30%,
    rgba(160, 200, 175, 0.30) 70%,
    transparent);
  z-index: 1;
}

.footer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.footer__blob--tl {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(160, 200, 175, 0.15), transparent 70%);
}

.footer__blob--br {
  bottom: -140px;
  right: -110px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(74, 122, 99, 0.25), transparent 70%);
}

.footer__container {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 580px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8F0E5 50%,
    #C8D9CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(160, 200, 175, 0.20));
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin: 0;
}

/* Ornamento decorativo */
.footer__brand-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 160px;
  justify-content: center;
}

.footer__brand-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.45) 50%,
    transparent);
}

.footer__brand-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A0C8AF;
  box-shadow:
    0 0 0 3px rgba(160, 200, 175, 0.18),
    0 0 12px rgba(160, 200, 175, 0.45);
}

.footer__brand-tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(220, 230, 222, 0.78);
  margin: 4px 0 0;
  text-wrap: pretty;
}

/* Disclaimer */
.footer__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 640px;
  margin-top: 36px;
  padding: 18px 22px;
  background:
    linear-gradient(160deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(160, 200, 175, 0.18);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
}

.footer__disclaimer-icon {
  color: rgba(160, 200, 175, 0.75);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__disclaimer p {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(220, 230, 222, 0.68);
  margin: 0;
  text-wrap: pretty;
}

/* Divisor refinado */
.footer__divider {
  width: 100%;
  max-width: 420px;
  height: 1px;
  margin: 36px 0 24px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.30) 50%,
    transparent);
}

/* Bottom: copyright + links */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.footer__copyright {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: rgba(220, 230, 222, 0.55);
  margin: 0;
}

.footer__copyright strong {
  color: rgba(220, 230, 222, 0.75);
  font-weight: 600;
}

/* Links */
.footer__links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(220, 230, 222, 0.72);
  transition:
    color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(160, 200, 175, 0.70) 50%,
    transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__links a:hover::after {
  transform: scaleX(1);
}

.footer__links-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(160, 200, 175, 0.40);
}

/* ========================================
   RESPONSIVO — DESKTOP
   ======================================== */
@media (min-width: 900px) {
  .hero {
    padding: 48px 48px 110px;
  }

  .hero__container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }

  .hero__content {
    align-items: flex-start;
    text-align: left;
    gap: 28px;
  }

  /* No desktop, esconde a imagem mobile e mostra a desktop */
  .hero__visual--mobile {
    display: none;
  }

  .hero__visual--desktop {
    display: flex;
  }

  .hero__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }

  .hero__avatar {
    width: 26px;
    height: 26px;
  }

  .hero__avatar:not(:first-child) {
    margin-left: -8px;
  }

  .hero__social-text {
    font-size: 12.5px;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 56px 64px 130px;
  }
}

/* Benefícios — tablet/desktop */
@media (min-width: 720px) {
  .benefits {
    padding: 110px 48px 120px;
  }

  .benefits__header {
    gap: 22px;
    margin-bottom: 64px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .benefit-card {
    padding: 28px 26px;
  }
}

@media (min-width: 1024px) {
  .benefits {
    padding: 130px 64px 140px;
  }

  .benefits__header {
    margin-bottom: 72px;
  }

  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .benefit-card {
    padding: 32px 28px;
    gap: 16px;
  }

  .benefit-card__icon {
    width: 48px;
    height: 48px;
  }

  .benefit-card__title {
    font-size: 22px;
  }

  .benefit-card__text {
    font-size: 15px;
  }

  .benefits__cta-wrap {
    margin-top: 64px;
  }

  .benefits__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* Prova social — tablet/desktop */
@media (min-width: 720px) {
  .proof {
    padding: 110px 48px 120px;
  }

  .proof__header {
    gap: 22px;
    margin-bottom: 64px;
  }

  .proof__grid {
    column-count: 2;
    column-gap: 18px;
  }

  .proof-card {
    margin-bottom: 18px;
  }
}

@media (min-width: 1024px) {
  .proof {
    padding: 130px 64px 140px;
  }

  .proof__header {
    margin-bottom: 72px;
  }

  .proof__grid {
    column-count: 3;
    column-gap: 20px;
  }

  .proof-card {
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .proof__cta-wrap {
    margin-top: 64px;
  }

  .proof__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* Audiência — tablet/desktop */
@media (min-width: 720px) {
  .audience {
    padding: 110px 48px 120px;
  }

  .audience__header {
    gap: 22px;
    margin-bottom: 64px;
  }

  .audience__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .audience-card {
    padding: 30px 28px;
  }

  .audience__closing {
    margin-top: 64px;
    gap: 28px;
  }

  .audience__closing-line {
    width: 56px;
  }

  .audience__cta-wrap {
    margin-top: 44px;
  }
}

@media (min-width: 1024px) {
  .audience {
    padding: 130px 64px 140px;
  }

  .audience__header {
    margin-bottom: 72px;
  }

  /* Grid editorial: 3 em cima, 2 centralizadas embaixo */
  .audience__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
  }

  .audience-card {
    grid-column: span 2;
    padding: 34px 30px;
    gap: 18px;
  }

  /* Cards 4 e 5 (últimos dois) ocupam 3 colunas cada, centralizados */
  .audience-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .audience-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .audience-card__icon {
    width: 56px;
    height: 56px;
  }

  .audience-card__title {
    font-size: 23px;
  }

  .audience-card__text {
    font-size: 15px;
  }

  .audience__closing {
    margin-top: 80px;
    gap: 32px;
  }

  .audience__closing-line {
    width: 64px;
  }

  .audience__cta-wrap {
    margin-top: 52px;
  }

  .audience__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* Autora — tablet/desktop */
@media (min-width: 900px) {
  .author {
    padding: 120px 48px 130px;
  }

  .author__container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
  }

  .author__content {
    align-items: flex-start;
    text-align: left;
    gap: 26px;
  }

  .author__title {
    max-width: none;
  }

  .author__text {
    font-size: 14px;
    max-width: 520px;
  }

  .author__quote {
    padding: 26px 26px 24px;
  }

  .author__quote-mark {
    justify-content: flex-start;
  }

  .author__quote p {
    text-align: left;
  }

  .author__signature {
    align-items: flex-start;
  }

  .author__signature-line {
    margin-left: 0;
  }

  .author__image-frame {
    max-width: 480px;
  }
}

@media (min-width: 1200px) {
  .author {
    padding: 140px 64px 150px;
  }

  .author__container {
    gap: 80px;
  }

  .author__image-frame {
    max-width: 520px;
  }

  .author__text {
    font-size: 14.5px;
  }
}

/* Deliverables — tablet/desktop */
@media (min-width: 820px) {
  .deliverables {
    padding: 110px 48px 120px;
  }

  .deliverables__header {
    gap: 22px;
    margin-bottom: 72px;
  }

  .deliverables__list {
    gap: 40px;
  }

  .deliverable {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 48px;
    padding: 40px 40px 42px;
  }

  .deliverable__content {
    order: 1;
  }

  .deliverable__visual {
    order: 2;
    min-height: 320px;
  }

  /* Alternar lados — pares vão com imagem à esquerda */
  .deliverable--reverse .deliverable__content {
    order: 2;
  }

  .deliverable--reverse .deliverable__visual {
    order: 1;
  }

  .deliverable--reverse::after {
    right: auto;
    left: -80px;
  }

  .deliverable__list {
    gap: 11px;
  }

  .deliverable__list li {
    font-size: 15px;
  }

  .deliverable__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .deliverables__closing {
    margin-top: 72px;
    gap: 28px;
  }

  .deliverables__closing-line {
    width: 56px;
  }

  .deliverables__cta-wrap {
    margin-top: 44px;
  }
}

@media (min-width: 1100px) {
  .deliverables {
    padding: 130px 64px 140px;
  }

  .deliverables__header {
    margin-bottom: 88px;
  }

  .deliverables__list {
    gap: 48px;
  }

  .deliverable {
    padding: 48px 52px;
    gap: 60px;
  }

  .deliverable__visual {
    min-height: 400px;
  }

  .deliverable__image {
    max-height: 500px;
    width: 115%;
    max-width: 115%;
  }

  .deliverables__closing {
    margin-top: 88px;
  }

  .deliverables__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* Bônus — tablet/desktop */
@media (min-width: 820px) {
  .bonus {
    padding: 110px 48px 120px;
  }

  .bonus__header {
    gap: 22px;
    margin-bottom: 64px;
  }

  .bonus__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .bonus-card__visual {
    padding: 44px 20px 24px;
    min-height: 340px;
  }

  .bonus-card__image {
    max-width: 120%;
    width: 120%;
    max-height: 380px;
  }

  .bonus-card__content {
    padding: 8px 32px 36px;
    gap: 14px;
  }

  .bonus__closing {
    margin-top: 64px;
    gap: 28px;
  }

  .bonus__closing-line {
    width: 56px;
  }

  .bonus__cta-wrap {
    margin-top: 44px;
  }
}

@media (min-width: 1100px) {
  .bonus {
    padding: 130px 64px 140px;
  }

  .bonus__header {
    margin-bottom: 80px;
  }

  .bonus__grid {
    gap: 32px;
  }

  .bonus-card__visual {
    padding: 52px 24px 32px;
    min-height: 400px;
  }

  .bonus-card__image {
    max-width: 125%;
    width: 125%;
    max-height: 460px;
  }

  .bonus-card__content {
    padding: 10px 36px 42px;
    gap: 16px;
  }

  .bonus-card__text {
    font-size: 15px;
  }

  .bonus-card__list li {
    font-size: 14.5px;
  }

  .bonus__closing {
    margin-top: 80px;
  }

  .bonus__cta {
    padding: 22px 36px;
    font-size: 17px;
    border-radius: 16px;
  }
}

/* Oferta — tablet/desktop */
@media (min-width: 820px) {
  .offer {
    padding: 110px 48px 120px;
  }

  .offer__header {
    margin-bottom: 56px;
  }

  .offer-card__inner {
    padding: 48px 44px;
  }

  .offer-card__visual {
    min-height: 320px;
    margin-bottom: 10px;
  }

  .offer-card__image {
    max-height: 420px;
  }

  .offer-card__body {
    gap: 26px;
  }

  .offer-card__pricing {
    padding: 26px 22px 24px;
    gap: 12px;
  }

  .offer-card__list {
    gap: 16px;
  }

  .offer-card__list-content {
    font-size: 14px;
  }

  .offer-card__list-content strong {
    font-size: 14.5px;
  }

  .offer-card__cta {
    padding: 22px 28px;
    font-size: 17px;
    border-radius: 16px;
  }

  .offer-card__assurance {
    font-size: 11.5px;
  }
}

@media (min-width: 1024px) {
  .offer {
    padding: 130px 64px 140px;
  }

  .offer__header {
    margin-bottom: 64px;
  }

  /* Layout vertical centralizado, com imagem ampla no topo do card */
  .offer-card {
    max-width: 640px;
    margin: 0 auto;
  }

  .offer-card__inner {
    padding: 56px 56px;
    display: block;
  }

  .offer-card__visual {
    margin: 0 auto 8px;
    min-height: 320px;
    width: 100%;
  }

  .offer-card__visual-glow {
    width: 85%;
    height: 80%;
    filter: blur(65px);
  }

  .offer-card__image {
    width: 90%;
    max-width: 480px;
    max-height: 420px;
    filter:
      drop-shadow(0 28px 44px rgba(0, 0, 0, 0.45))
      drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  }

  /* Body alinhado ao centro abaixo da imagem */
  .offer-card__body {
    gap: 28px;
  }

  .offer-card__product {
    text-align: center;
    margin: 0 auto;
  }

  .offer-card__pricing {
    align-items: center;
  }
}

/* Garantia — tablet/desktop */
@media (min-width: 820px) {
  .guarantee {
    padding: 100px 48px 110px;
  }

  .guarantee-card {
    flex-direction: row;
    align-items: center;
    gap: 44px;
    padding: 48px 52px;
    text-align: left;
  }

  .guarantee__seal-wrap {
    flex-shrink: 0;
  }

  .guarantee__content {
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }

  .guarantee__signature {
    margin-top: 4px;
  }

  .guarantee__signature-line:first-child {
    display: none;
  }

  .guarantee__signature {
    justify-content: flex-start;
    gap: 12px;
  }

  .guarantee__signature-line {
    max-width: 60px;
  }
}

@media (min-width: 1024px) {
  .guarantee {
    padding: 120px 64px 130px;
  }

  .guarantee-card {
    gap: 56px;
    padding: 56px 64px;
  }

  .guarantee__seal {
    width: 196px;
    height: 196px;
  }

  .guarantee__seal-core {
    width: 138px;
    height: 138px;
  }

  .guarantee__seal-number {
    font-size: 66px;
  }

  .guarantee__seal-label {
    font-size: 12px;
  }

  .guarantee__seal-text {
    font-size: 13.5px;
  }

  .guarantee__seal-glow {
    width: 240px;
    height: 240px;
  }

  .guarantee__text {
    font-size: 15px;
  }
}

/* FAQ — tablet/desktop */
@media (min-width: 720px) {
  .faq {
    padding: 110px 48px 120px;
  }

  .faq__header {
    gap: 22px;
    margin-bottom: 56px;
  }

  .faq__list {
    gap: 14px;
  }

  .faq-item__summary {
    padding: 22px 26px;
    gap: 20px;
  }

  .faq-item__num {
    font-size: 16px;
    min-width: 26px;
  }

  .faq-item__question {
    font-size: 15.5px;
  }

  .faq-item__icon {
    width: 32px;
    height: 32px;
  }

  .faq-item__answer {
    padding: 0 26px 24px 72px;
  }

  .faq-item__answer::before {
    left: 26px;
    right: 26px;
  }

  .faq-item__answer p {
    font-size: 14.5px;
    margin-top: 16px;
  }
}

@media (min-width: 1024px) {
  .faq {
    padding: 130px 64px 140px;
  }

  .faq__header {
    margin-bottom: 64px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-item__summary {
    padding: 24px 28px;
  }

  .faq-item__question {
    font-size: 16px;
  }
}

/* Footer — tablet/desktop */
@media (min-width: 720px) {
  .footer {
    padding: 88px 48px 40px;
  }

  .footer__brand-tagline {
    font-size: 14.5px;
  }

  .footer__disclaimer {
    margin-top: 44px;
    padding: 20px 24px;
  }

  .footer__disclaimer p {
    font-size: 13px;
  }

  .footer__divider {
    margin: 44px 0 28px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 100px 64px 44px;
  }

  .footer__disclaimer {
    padding: 22px 28px;
  }

  .footer__divider {
    margin: 52px 0 32px;
  }
}

/* ========================================
   RESPONSIVO — MOBILE PEQUENO
   ======================================== */
@media (max-width: 480px) {
  .hero {
    padding: 20px 20px 64px;
  }

  .hero__container {
    gap: 40px;
  }

  .hero__content {
    gap: 22px;
  }

  .hero__eyebrow {
    font-size: 9.5px;
    padding: 6px 12px 6px 10px;
    letter-spacing: 0.025em;
    gap: 6px;
  }

  .hero__cta {
    padding: 18px 22px;
    font-size: 15.5px;
  }

  .hero__social {
    gap: 9px;
  }

  .hero__avatar {
    width: 22px;
    height: 22px;
    border-width: 1.5px;
  }

  .hero__avatar:not(:first-child) {
    margin-left: -7px;
  }

  .hero__social-text {
    font-size: 11px;
  }

  .benefits {
    padding: 64px 20px 76px;
  }

  .benefits__header {
    gap: 18px;
    margin-bottom: 40px;
  }

  .benefit-card {
    padding: 22px 20px;
    gap: 12px;
  }

  .benefit-card__title {
    font-size: 18.5px;
  }

  .benefit-card__text {
    font-size: 14px;
  }

  .benefits__cta {
    padding: 18px 22px;
    font-size: 15.5px;
  }

  .proof {
    padding: 64px 20px 76px;
  }

  .proof__header {
    gap: 18px;
    margin-bottom: 40px;
  }

  /* Rating em mobile pequeno: empilha em duas linhas com gap menor */
  .proof__rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 22px;
  }

  .proof__rating-avatars {
    padding-left: 0;
    border-left: none;
  }

  .proof__rating-avatar {
    width: 24px;
    height: 24px;
    border-width: 1.5px;
  }

  .proof__rating-text {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .proof__rating-text strong {
    font-size: 13.5px;
  }

  .proof__rating-text span {
    font-size: 11.5px;
  }

  .proof-card {
    padding: 12px;
    border-radius: 18px;
  }

  .proof__cta {
    padding: 18px 18px;
    font-size: 14.5px;
    gap: 8px;
    letter-spacing: 0;
  }

  .proof__cta-arrow {
    width: 18px;
    height: 18px;
  }

  .audience {
    padding: 64px 20px 76px;
  }

  .audience__header {
    gap: 18px;
    margin-bottom: 40px;
  }

  .audience-card {
    padding: 24px 22px;
    gap: 14px;
  }

  .audience-card__icon {
    width: 48px;
    height: 48px;
  }

  .audience-card__title {
    font-size: 19.5px;
  }

  .audience-card__text {
    font-size: 14px;
  }

  .audience__closing {
    margin-top: 40px;
    gap: 20px;
  }

  .audience__closing-text {
    font-size: 17px;
  }

  .audience__cta-wrap {
    margin-top: 28px;
  }

  .audience__cta {
    padding: 18px 22px;
    font-size: 15.5px;
  }

  .author {
    padding: 64px 20px 76px;
  }

  .author__container {
    gap: 28px;
  }

  .author__content {
    gap: 20px;
  }

  .author__text {
    font-size: 13px;
    gap: 12px;
  }

  .author__quote {
    padding: 22px 18px 20px;
  }

  .author__quote p {
    font-size: 16px;
  }

  .author__image-frame {
    max-width: 340px;
  }

  .deliverables {
    padding: 64px 20px 76px;
  }

  .deliverables__header {
    gap: 18px;
    margin-bottom: 44px;
  }

  .deliverables__list {
    gap: 24px;
  }

  .deliverable {
    padding: 22px 20px 24px;
    gap: 22px;
    border-radius: 20px;
  }

  .deliverable__title {
    font-size: 20px;
  }

  .deliverable__text {
    font-size: 13.5px;
  }

  .deliverable__list li {
    font-size: 13.5px;
  }

  .deliverable__blocks li {
    font-size: 13px;
    padding: 9px 12px;
  }

  .deliverable__visual {
    min-height: 180px;
  }

  .deliverables__closing {
    margin-top: 40px;
    gap: 20px;
  }

  .deliverables__closing-text {
    font-size: 16px;
  }

  .deliverables__cta-wrap {
    margin-top: 28px;
  }

  .deliverables__cta {
    padding: 18px 22px;
    font-size: 15.5px;
  }

  .bonus {
    padding: 64px 20px 76px;
  }

  .bonus__header {
    gap: 18px;
    margin-bottom: 40px;
  }

  .bonus__grid {
    gap: 20px;
  }

  .bonus-card__visual {
    padding: 36px 16px 18px;
    min-height: 300px;
  }

  .bonus-card__badge {
    top: 16px;
    left: 16px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .bonus-card__image {
    max-width: 115%;
    width: 115%;
    max-height: 320px;
  }

  .bonus-card__content {
    padding: 6px 22px 26px;
  }

  .bonus-card__title {
    font-size: 19px;
  }

  .bonus-card__text {
    font-size: 13.5px;
  }

  .bonus-card__list li {
    font-size: 13.5px;
  }

  .bonus__closing {
    margin-top: 40px;
    gap: 20px;
  }

  .bonus__closing-text {
    font-size: 16px;
  }

  .bonus__cta-wrap {
    margin-top: 28px;
  }

  .bonus__cta {
    padding: 18px 22px;
    font-size: 15.5px;
  }

  .offer {
    padding: 64px 16px 76px;
  }

  .offer__header {
    gap: 16px;
    margin-bottom: 32px;
  }

  .offer-card {
    border-radius: 22px;
  }

  .offer-card__inner {
    padding: 26px 20px;
    border-radius: 21px;
  }

  .offer-card__visual {
    min-height: 200px;
  }

  .offer-card__image {
    max-height: 280px;
  }

  .offer-card__pricing {
    padding: 18px 14px 16px;
  }

  .offer-card__list-content {
    font-size: 13px;
  }

  .offer-card__list-content strong {
    font-size: 13.5px;
  }

  .offer-card__cta {
    padding: 18px 16px;
    font-size: 14.5px;
    gap: 8px;
    letter-spacing: 0;
  }

  .offer-card__cta-arrow {
    width: 18px;
    height: 18px;
  }

  .offer-card__assurance {
    font-size: 10.5px;
    gap: 8px;
    line-height: 1.4;
  }

  .guarantee {
    padding: 56px 18px 68px;
  }

  .guarantee-card {
    padding: 32px 22px 30px;
    gap: 22px;
    border-radius: 22px;
  }

  .guarantee__seal {
    width: 146px;
    height: 146px;
  }

  .guarantee__seal-core {
    width: 104px;
    height: 104px;
  }

  .guarantee__seal-number {
    font-size: 50px;
  }

  .guarantee__seal-label {
    font-size: 10px;
  }

  .guarantee__seal-text {
    font-size: 11.5px;
    letter-spacing: 0.22em;
  }

  .guarantee__text {
    font-size: 13.5px;
  }

  .guarantee__signature-text {
    font-size: 13px;
  }

  .faq {
    padding: 60px 18px 72px;
  }

  .faq__header {
    gap: 18px;
    margin-bottom: 36px;
  }

  .faq__list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item__summary {
    padding: 16px 16px;
    gap: 12px;
  }

  .faq-item__num {
    font-size: 14px;
    min-width: 20px;
  }

  .faq-item__question {
    font-size: 13.5px;
  }

  .faq-item__icon {
    width: 26px;
    height: 26px;
  }

  .faq-item__answer {
    padding: 0 16px 18px 48px;
  }

  .faq-item__answer::before {
    left: 16px;
    right: 16px;
  }

  .faq-item__answer p {
    font-size: 13.5px;
    margin-top: 12px;
  }

  .footer {
    padding: 56px 18px 28px;
  }

  .footer__brand-tagline {
    font-size: 13.5px;
  }

  .footer__disclaimer {
    margin-top: 28px;
    padding: 16px 18px;
    gap: 10px;
  }

  .footer__disclaimer p {
    font-size: 12px;
  }

  .footer__divider {
    margin: 28px 0 20px;
  }

  .footer__copyright {
    font-size: 11.5px;
  }

  .footer__links a {
    font-size: 11.5px;
  }
}
