/* ═══════════════════════════════════════════════════
   AUDIONEX LP — CSS
   Tema: Botanical Garden (Adaptado para Saúde Natural)
   Design: Emocional + Editorial | Mobile-first | UIX
═══════════════════════════════════════════════════ */

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

:root {
  /* ── Botanical Garden palette ── */
  --fern:      #4a7c59;
  --fern-dark: #345843;
  --fern-light:#e8f0eb;
  --marigold:  #f9a620;
  --marigold-lt:#fef6e4;
  --terra:     #b7472a;
  --terra-lt:  #faeae6;
  --cream:     #f5f3ed;
  --cream-dark:#ebe8de;

  /* ── Tons neutros quentes ── */
  --bark:      #2c2418;
  --bark-mid:  #4a3f32;
  --soil:      #6b5d4f;
  --stone:     #8c8173;
  --sand:      #b8ad9e;
  --parchment: #faf8f4;
  --white:     #ffffff;

  /* ── Semânticos ── */
  --text:      #2c2418;
  --text-soft: #5c5347;
  --text-muted:#8c8173;
  --accent:    var(--fern);
  --accent-lt: var(--fern-light);
  --cta:       var(--marigold);
  --cta-hover: #e89810;
  --danger:    var(--terra);
  --danger-lt: var(--terra-lt);
  --success:   var(--fern);
  --success-lt:var(--fern-light);

  /* ── Tipografia ── */
  --font-serif: 'Lora', Georgia, 'DejaVu Serif', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* ── Sombras quentes ── */
  --shadow-xs:  0 1px 3px rgba(44,36,24,.06);
  --shadow-sm:  0 2px 8px rgba(44,36,24,.08);
  --shadow-md:  0 4px 20px rgba(44,36,24,.10);
  --shadow-lg:  0 8px 40px rgba(44,36,24,.14);
  --shadow-xl:  0 16px 56px rgba(44,36,24,.18);

  /* ── Layout ── */
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  24px;
  --max-w:      740px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --transition-fast: .15s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 50px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--fern); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--fern-dark); text-decoration: underline; }

::selection { background: var(--fern-light); color: var(--fern-dark); }

/* ═══════════════════════════════════════════
   URGENCY BAR
═══════════════════════════════════════════ */
.urgency-bar {
  background: var(--terra);
  color: #fff;
  text-align: center;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(183,71,42,.25);
}
.urgency-inner {
  display: inline;
  line-height: 1.6;
}
.urgency-icon { font-size: .85rem; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ═══════════════════════════════════════════
   QUIZ SECTION
═══════════════════════════════════════════ */
.quiz-section {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(74,124,89,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(249,166,32,.08) 0%, transparent 50%),
    linear-gradient(160deg, var(--bark) 0%, var(--fern-dark) 40%, var(--fern) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.quiz-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.quiz-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fern), var(--marigold), var(--terra));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.quiz-header { text-align: center; margin-bottom: 2rem; padding-top: .5rem; }
.quiz-logo { margin: 0 auto .8rem; width: 130px; }
.quiz-logo img { width: 100%; filter: drop-shadow(0 2px 4px rgba(0,0,0,.1)); }
.quiz-tagline {
  font-size: .88rem;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* Progress bar */
.progress-bar {
  height: 5px;
  background: var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .6rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--fern), var(--marigold));
  border-radius: 10px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.progress-label {
  font-size: .76rem;
  color: var(--text-muted);
  text-align: right;
  margin-bottom: 1.5rem;
}

/* Quiz steps */
.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-question {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--bark);
  line-height: 1.5;
  margin-bottom: 1.6rem;
  font-weight: 600;
}
.quiz-question em {
  color: var(--fern);
  font-style: italic;
}

.quiz-options { display: flex; flex-direction: column; gap: .7rem; }

.quiz-btn {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-size: .95rem;
  font-family: var(--font-sans);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.quiz-btn::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--fern);
  border-radius: var(--radius) 0 0 var(--radius);
  transition: width var(--transition);
}
.quiz-btn:hover {
  border-color: var(--fern);
  background: var(--fern-light);
  color: var(--fern-dark);
  padding-left: 1.6rem;
}
.quiz-btn:hover::before { width: 4px; }
.quiz-btn:active { transform: scale(.98); }

/* Focus para acessibilidade */
.quiz-btn:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 2px;
}

/* Quiz Result */
.quiz-result { text-align: center; }
.result-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--fern) 0%, var(--fern-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.3rem;
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 16px rgba(74,124,89,.3);
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

.result-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bark);
  margin-bottom: .8rem;
}
.result-text {
  color: var(--text-soft);
  font-size: .95rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.result-cta-text {
  font-size: .88rem;
  color: var(--fern);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.btn-result {
  background: linear-gradient(135deg, var(--fern) 0%, var(--fern-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 1.1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(74,124,89,.35);
  width: 100%;
}
.btn-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,.4);
}

/* ═══════════════════════════════════════════
   ADVERTORIAL
═══════════════════════════════════════════ */
.advertorial { background: var(--cream); }

/* Header editorial */
.ad-header {
  background: var(--bark);
  padding: .85rem 1.25rem;
  border-bottom: 3px solid var(--fern);
}
.ad-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.ad-logo { height: 34px; width: auto; }
.ad-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.ad-meta .separator { opacity: .3; }

@media (max-width: 460px) {
  .urgency-bar { padding: .35rem .75rem; font-size: .75rem; }
  .ad-header { padding: .45rem .75rem; }
  .ad-header-inner { gap: .4rem; }
  .ad-logo { height: 22px; }
  .ad-meta {
    display: inline;
    font-size: .67rem;
    line-height: 1.4;
  }
  .ad-meta span { white-space: nowrap; }
  .ad-meta .separator { margin: 0 .15rem; }
}

/* Article wrapper */
.ad-article { padding: 0 1.25rem 4rem; }
.ad-content {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--white);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 0 2rem 3rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

/* ── HEADLINE SECTION ── */
.headline-section {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 2.5rem;
}
.main-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.35;
  color: var(--bark);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.main-headline em {
  font-style: italic;
  color: var(--terra);
  display: block;
  font-size: .88em;
}
.main-headline strong { color: var(--fern); }

.main-subheadline {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 1.2rem;
}
.share-bar {
  font-size: .8rem;
  color: var(--text-muted);
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

/* ── ADVERTORIAL INTRO (foto + abertura) ── */
.advertorial-intro {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.advertorial-figure {
  margin: 0;
  flex-shrink: 0;
}
.advertorial-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.advertorial-caption {
  margin-top: .75rem;
  padding: .75rem 1rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--fern);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.caption-quote {
  display: block;
  font-style: italic;
  font-size: .82rem;
  color: var(--bark);
  line-height: 1.55;
  margin-bottom: .35rem;
}
.caption-author {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--fern);
}
.advertorial-opening {
  padding-top: .25rem;
}
.advertorial-opening .doctor-quote {
  font-size: 1rem;
}

@media (max-width: 460px) {
  .advertorial-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .advertorial-figure {
    width: 180px;
    margin: 0 auto;
  }
  .advertorial-photo {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-position: center 20%;
  }
  .advertorial-caption {
    text-align: left;
    margin-top: .5rem;
    font-size: .9rem;
    border-left: 3px solid var(--fern);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    max-width: 100%;
  }
  .advertorial-opening {
    text-align: left;
  }
}

/* ── STORY / PROSE ── */
.story-section,
.section-block { margin-bottom: 3rem; }

.story-intro {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.story-intro strong {
  font-size: 3.2rem;
  float: left;
  line-height: .85;
  margin: .05em .15em 0 0;
  color: var(--fern);
  font-family: var(--font-serif);
}

.story-section p,
.ad-content p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 1.15rem;
  line-height: 1.85;
}

/* Doctor's quote */
.doctor-quote {
  background: var(--cream);
  border-left: 4px solid var(--terra);
  padding: 1.3rem 1.6rem;
  margin: 1.6rem 0;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.65;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-icon {
  font-size: 1.8rem;
  color: var(--sand);
  line-height: 0;
  vertical-align: -.25em;
  margin: 0 .2em;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--bark);
  font-weight: 700;
  margin-bottom: 1.3rem;
  line-height: 1.35;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--fern), var(--marigold));
  margin-top: .55rem;
  border-radius: 2px;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--fern-light);
  border: 1px solid rgba(74,124,89,.2);
  border-left: 5px solid var(--fern);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  margin: 1.6rem 0;
}
.highlight-box p {
  color: var(--bark) !important;
  margin-bottom: .4rem !important;
  font-size: 1rem !important;
}
.highlight-source {
  font-size: .8rem !important;
  color: var(--soil) !important;
  font-style: italic;
}

/* ── BRAIN IMAGE ── */
.brain-image { margin: 1.5rem 0; text-align: center; }
.brain-image img {
  max-height: 260px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.brain-image figcaption {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .6rem;
  font-style: italic;
}

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-card {
  background: var(--bark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 60px; height: 60px;
  background: rgba(74,124,89,.15);
  border-radius: 50%;
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-serif);
  color: var(--marigold);
  line-height: 1.1;
  margin-bottom: .45rem;
  position: relative;
}
.stat-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
  position: relative;
}
.stats-source {
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: .5rem;
}

/* ── TESTIMONIAL INLINE ── */
.testimonial-inline {
  display: flex;
  gap: 1.1rem;
  background: var(--marigold-lt);
  border: 1px solid rgba(249,166,32,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2.5rem 0;
  align-items: flex-start;
}
.depo-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--marigold);
  box-shadow: 0 2px 8px rgba(249,166,32,.2);
}
.depo-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .98rem;
  color: var(--bark);
  margin-bottom: .5rem !important;
  line-height: 1.7;
}
.depo-author {
  font-size: .84rem;
  color: var(--text-soft);
  font-weight: 600;
}
.stars { color: var(--marigold); font-size: .92rem; letter-spacing: 1px; }

/* ── DIALOGUE ── */
.dialogue {
  background: var(--cream);
  border-radius: var(--radius);
  padding: .9rem 1.3rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin: .7rem 0 !important;
  border: 1px solid var(--cream-dark);
}
.reply {
  background: var(--fern-light);
  border: 1px solid rgba(74,124,89,.2);
  border-left: 3px solid var(--fern);
}

/* ── PRODUCT INTRO ── */
.product-intro-block {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--bark) 0%, var(--fern-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  margin: 3rem 0;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.product-intro-block::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(249,166,32,.08);
  border-radius: 50%;
}
.product-intro-text { flex: 1; position: relative; }
.product-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .8rem;
}
.product-title span {
  font-size: .95rem;
  color: var(--marigold);
  font-family: var(--font-sans);
  font-weight: 400;
  display: block;
  margin-top: .2rem;
}
.product-intro-text p {
  color: rgba(255,255,255,.8) !important;
  font-size: .95rem;
  margin-bottom: 0 !important;
}
.product-intro-image { width: 135px; flex-shrink: 0; position: relative; }
.product-intro-image img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  transition: transform var(--transition);
}
.product-intro-block:hover .product-intro-image img { transform: scale(1.05) rotate(-2deg); }

/* ── MECHANISM GRID ── */
.mechanism-section { margin-bottom: 3rem; }
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.mechanism-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.3rem;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  position: relative;
}
.mechanism-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--fern);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: width var(--transition);
}
.mechanism-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,124,89,.3);
}
.mechanism-card:hover::after { width: 60%; }

.mech-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  background: var(--fern-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: .6rem;
}
.mech-icon img { width: 100%; height: 100%; object-fit: contain; }

.mechanism-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--bark);
  font-weight: 700;
  margin-bottom: .6rem;
}
.mechanism-card p {
  font-size: .88rem;
  color: var(--text-soft);
  margin-bottom: 0 !important;
  line-height: 1.55;
}

/* ── INGREDIENTS ── */
.ingredients-block {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  border: 1px solid var(--cream-dark);
}
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.3rem;
}
.ingredient-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.ingredient-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(74,124,89,.25);
}
.ing-img {
  width: 56px; height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--fern-light);
  padding: 4px;
}
.ing-icon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--fern), var(--fern-dark));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 10px;
  min-width: 56px; min-height: 56px;
}
.ing-info h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: .3rem;
}
.ing-info p {
  font-size: .85rem;
  color: var(--text-soft);
  margin-bottom: 0 !important;
  line-height: 1.55;
}

/* ── DOCTOR BLOCK ── */
.doctor-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--fern-light);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 2.5rem 0;
  border-left: 5px solid var(--fern);
}
.doctor-img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--fern);
  box-shadow: 0 2px 8px rgba(74,124,89,.2);
}
.doctor-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--bark);
  margin-bottom: .8rem !important;
  line-height: 1.65;
}
.doctor-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--fern-dark);
  margin-bottom: 0 !important;
}

/* ── TESTIMONIALS GRID ── */
.testimonials-section { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: .8rem; right: 1.2rem;
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--cream-dark);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,124,89,.2);
}
.depo-header {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: 1rem;
}
.depo-avatar-sm {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fern);
}
.depo-name { font-weight: 700; font-size: .9rem; color: var(--bark); }
.depo-location { font-size: .78rem; color: var(--text-muted); }
.depo-body {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 0 !important;
  font-style: italic;
  position: relative;
}

/* ═══════════════════════════════════════════
   OFFERS SECTION
═══════════════════════════════════════════ */
.offers-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.8rem 1.8rem;
  margin: 3rem 0;
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-md);
  position: relative;
}

.offer-headline { text-align: center; margin-bottom: 2rem; }
.offer-headline h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bark);
  margin-bottom: .5rem;
}
.offer-headline p { color: var(--text-soft); font-size: .95rem; }
.urgente-icon { width: 110px; margin: 0 auto .8rem; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.offer-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.3rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.offer-card-popular {
  border-color: var(--fern);
  box-shadow: 0 8px 30px rgba(74,124,89,.18);
  transform: scale(1.02);
}
.offer-card-popular:hover { transform: scale(1.02) translateY(-5px); }

.offer-card-best { border-color: var(--marigold); }

.offer-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: .35rem 1.1rem;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .04em;
}
.offer-badge-basic   { background: var(--cream-dark); color: var(--bark-mid); }
.offer-badge-popular { background: var(--fern); color: #fff; box-shadow: 0 2px 8px rgba(74,124,89,.3); }
.offer-badge-best    { background: var(--marigold); color: var(--bark); box-shadow: 0 2px 8px rgba(249,166,32,.3); }

.offer-img {
  width: 115px; height: 115px;
  object-fit: contain;
  margin: .5rem auto 1rem;
  transition: transform var(--transition);
}
.offer-card:hover .offer-img { transform: scale(1.08); }

.offer-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--bark);
  font-weight: 700;
  margin-bottom: .35rem;
}
.offer-supply { font-size: .82rem; color: var(--text-soft); margin-bottom: 1rem; }

.offer-price { margin-bottom: 1.3rem; }
.price-old {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-new {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bark);
  font-family: var(--font-serif);
  line-height: 1.2;
}
.price-per {
  display: block;
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: .25rem;
}
.price-economy {
  display: inline-block;
  background: var(--fern-light);
  color: var(--fern-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 20px;
  margin-top: .4rem;
}

/* Botões CTA */
.btn-buy {
  display: block;
  width: 100%;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: .9rem;
  text-align: center;
}
.btn-basic {
  background: var(--cream);
  color: var(--bark);
  border: 2px solid var(--cream-dark);
}
.btn-basic:hover {
  background: var(--cream-dark);
  text-decoration: none;
  border-color: var(--sand);
}
.btn-popular {
  background: linear-gradient(135deg, var(--fern) 0%, var(--fern-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,124,89,.35);
}
.btn-popular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,.45);
  text-decoration: none;
}
.btn-best {
  background: linear-gradient(135deg, var(--marigold) 0%, #e89810 100%);
  color: var(--bark);
  box-shadow: 0 4px 16px rgba(249,166,32,.35);
}
.btn-best:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,166,32,.45);
  text-decoration: none;
}

.offer-guarantee { font-size: .78rem; color: var(--fern); font-weight: 600; }

/* ── TRUST BADGES ── */
.trust-section { margin: 1.8rem 0; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1rem 0;
}
.trust-badge {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%) brightness(1.02);
  transition: filter var(--transition);
}
.trust-badge:hover { filter: grayscale(0%); }

/* ── GUARANTEE BLOCK ── */
.guarantee-block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--fern-light);
  border: 2px solid var(--fern);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  margin: 1.5rem 0;
}
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.guarantee-text h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--fern-dark);
  margin-bottom: .5rem;
}
.guarantee-text p {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── STOCK URGENCY ── */
.stock-urgency {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--marigold-lt);
  border: 1px solid rgba(249,166,32,.3);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.warning-img { width: 48px; flex-shrink: 0; }
.stock-urgency p { font-size: .85rem; color: var(--text-soft); margin-bottom: 0; }

/* ── P.S. BLOCK ── */
.ps-block {
  background: linear-gradient(135deg, var(--bark) 0%, var(--fern-dark) 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem;
  text-align: center;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ps-block::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 100px; height: 100px;
  background: rgba(249,166,32,.06);
  border-radius: 50%;
}
.ps-text {
  color: rgba(255,255,255,.88) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  margin-bottom: 1.2rem !important;
  position: relative;
}
.ps-text strong { color: var(--marigold); }

.btn-ps {
  display: inline-block;
  background: var(--marigold);
  color: var(--bark);
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(249,166,32,.3);
  position: relative;
}
.btn-ps:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,166,32,.4);
  text-decoration: none;
  background: var(--cta-hover);
}

/* ── DISCLOSURE ── */
.disclosure {
  margin: 2.5rem 0;
  padding: 1.3rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
}
.disclosure p {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0 !important;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bark);
  padding: 2rem 1.25rem;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-logo { height: 34px; width: auto; margin: 0 auto 1rem; }
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}
.footer-nav a { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-nav a:hover { color: var(--marigold); }
.footer-nav span { color: rgba(255,255,255,.2); }
.footer-copy {
  font-size: .76rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   ANIMATIONS & MICRO-INTERACTIONS
═══════════════════════════════════════════ */
.fade-in {
  animation: fadeIn .65s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
}
.floating-cta.visible { display: block; animation: fadeIn .3s ease; }
.floating-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--fern) 0%, var(--fern-dark) 100%);
  color: #fff;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 24px rgba(74,124,89,.4);
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.floating-cta a:hover {
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(74,124,89,.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 680px) {
  .ad-content { padding: 0 1.4rem 2.5rem; border-radius: 0; }
  .hero-image-container { margin: 0 -1.4rem 2rem; border-radius: 0; }
}

@media (max-width: 600px) {
  .quiz-container { padding: 2rem 1.4rem; }
  .quiz-question  { font-size: 1.15rem; }
  .main-headline  { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }

  .product-intro-block {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }
  .product-intro-image { width: 110px; margin: 0 auto; }

  .doctor-block { flex-direction: column; align-items: center; text-align: center; }
  .doctor-img { margin: 0 auto; }

  .testimonial-inline { flex-direction: column; align-items: center; text-align: center; }
  .depo-avatar { margin: 0 auto; }

  .offers-grid { grid-template-columns: 1fr; }
  .offer-card-popular { transform: none; }
  .offer-card-popular:hover { transform: translateY(-5px); }

  .guarantee-block { flex-direction: column; text-align: center; align-items: center; }

  .mechanism-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .ps-block { padding: 2rem 1.4rem; }
}

@media (max-width: 400px) {
  .ad-article { padding: 0 .5rem 2.5rem; }
  .ad-content { padding: 0 1rem 2rem; }
  .offers-section { padding: 2rem .8rem; }
  .quiz-container { padding: 1.6rem 1rem; }
}

/* ── Acessibilidade: reduzir animações se solicitado ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Tipografia para telas grandes ── */
@media (min-width: 900px) {
  .ad-content { padding: 0 2.5rem 3.5rem; }
  .story-section p,
  .ad-content p { font-size: 1.08rem; }
}
