/* ========================================
   CitrusBurn — MetaboActivate
   styles.css v=2001
   ✅ v2001: Correções Completas + Paleta Exit Popup
   ======================================== */

/* ========================================
   1. CSS VARIABLES (Design Tokens)
   ======================================== */

:root {
  /* Paleta de Cores */
  --cb-cta:      #FF5722;
  --cb-cta-dark: #E64A19;
  --cb-cta-glow: rgba(255, 87, 34, 0.40);
  --cb-navy:     #2C3E50;
  --cb-navy-mid: #34495E;
  --cb-green:    #00bc40;
  --cb-green-bg: #E8F5E9;
  --cb-orange-1: #ed4e00;
  --cb-orange-2: #ff9f13;
  --cb-coral:    #fa5e41;
  
  /* Backgrounds */
  --bg:        #F8F8F8;
  --panel:     #ffffff;
  --panel-alt: #E8F5E9;
  
  /* Textos */
  --text:      #1a1a1a;
  --muted:     #575757;
  
  /* Linhas e Borders */
  --line:      #d1d1d1;
  
  /* Espaçamento e Layout */
  --radius:    14px;
  --shadow:    0 10px 24px rgba(0,0,0,.08);
  --container: 1120px;
  --adv-width: 800px;
  
  /* Tipografia */
  --font-body: 18px;
  --lh-body:   1.65;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-overlay: 8999;
  --z-modal: 9000;
}

/* ========================================
   2. RESET E BASE
   ======================================== */

*, *::before, *::after { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 0;
}

a { 
  color: inherit; 
  text-decoration: none;
}

/* ========================================
   3. ACESSIBILIDADE
   ======================================== */

/* ✅ CORRIGIDO: Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute; 
  left: -9999px; 
  top: 12px;
  background: #fff; 
  color: #000;
  padding: 10px 12px; 
  border-radius: 10px; 
  z-index: 9999;
}

.skip-link:focus { 
  left: 12px; 
}

/* ========================================
   4. LAYOUT GLOBAL
   ======================================== */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.advertorial-container {
  width: min(var(--adv-width), calc(100% - 40px));
  margin: 0 auto;
}

/* ========================================
   5. HEADER
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-dropdown);
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 20px;
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-shrink: 0; 
}

/* ✅ CORRIGIDO: Removida moldura da logo */
.brand-mark {
  width: 48px; 
  height: 48px;
  border-radius: 10px;
  display: grid; 
  place-items: center;
  background: transparent;
  border: none;
  overflow: hidden; 
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%; 
  height: 100%;
  object-fit: contain; 
  display: block; 
  padding: 0;
}

.brand-logo-fallback { 
  font-size: 24px; 
  line-height: 1; 
}

.brand-text strong {
  display: block; 
  font-size: 16px; 
  font-weight: 900;
  color: var(--cb-navy); 
  letter-spacing: -.2px;
}

.brand-tag {
  display: inline-block; 
  margin-top: 2px; 
  font-size: 11px; 
  font-weight: 700;
  letter-spacing: .4px; 
  text-transform: uppercase;
  color: var(--cb-cta); 
  background: rgba(255,87,34,.08);
  border: 1px solid rgba(255,87,34,.22); 
  padding: 2px 8px; 
  border-radius: 999px;
}

.nav { 
  display: flex; 
  gap: 14px; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.nav a {
  text-decoration: none; 
  color: var(--cb-navy);
  font-size: 15px; 
  font-weight: 600;
  padding: 8px 10px; 
  border-radius: 10px;
  transition: background .15s ease; 
  white-space: nowrap;
}

.nav a:hover { 
  background: rgba(44,62,80,.07); 
}

@media (max-width: 767px) {
  .site-header { 
    display: none; 
  }
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero .container { 
  max-width: 1200px; 
  margin: 0 auto; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: flex-start;
}

.hero-copy {
  display: flex; 
  flex-direction: column; 
  gap: 0; 
  padding-top: 0;
}

.eyebrow {
  font-size: 14px; 
  font-weight: 700; 
  text-transform: uppercase;
  letter-spacing: 0.5px; 
  color: #2c3e50; 
  margin: 0 0 8px 0;
}

.hero-headline {
  font-size: 56px; 
  font-weight: 800; 
  line-height: 1.2;
  color: #1a1a1a; 
  margin: 0 0 4px 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-headline .highlight {
  color: #e74c3c; 
  display: block;
}

.hero-subheadline {
  font-weight: 600; 
  font-size: 28px; 
  color: #2c3e50;
  display: block; 
  margin-top: 0px;
}

.lead {
  font-size: 18px; 
  line-height: 1.6; 
  color: #444;
  margin: 16px 0 20px 0; 
  max-width: 100%;
}

.lead strong { 
  color: #1a1a1a; 
  font-weight: 700; 
}

.presell-hero-cta {
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin-top: 20px;
}

.btn-cta-hero {
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 18px 32px; 
  font-size: 18px; 
  font-weight: 700;
  text-align: center; 
  text-decoration: none; 
  border: none;
  border-radius: 8px; 
  cursor: pointer;
  transition: all 0.3s ease; 
  min-height: 44px; 
  min-width: 44px;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #ffffff; 
  box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  box-shadow: 0 12px 32px rgba(231, 76, 60, 0.4);
  transform: translateY(-2px);
}

.btn-cta-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.presell-cta-note {
  font-size: 14px; 
  color: #666; 
  margin: 0; 
  text-align: center;
}

.presell-cta-note strong {
  color: #1a1a1a; 
  font-weight: 600;
}

.hero-right-column {
  display: flex; 
  flex-direction: column; 
  gap: 20px;
}

.hero-woman-wrap {
  position: relative; 
  overflow: hidden; 
  border-radius: 12px;
}

.hero-woman-img {
  display: block; 
  width: 100%; 
  height: auto; 
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-woman-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.1);
}

/* ✅ CORRIGIDO: Fallback para imagem que falha */
.hero-woman-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 420px;
  background: linear-gradient(135deg, #E8F5E9, #c8e6c9);
  border-radius: 12px;
  text-align: center;
  padding: 24px;
}

.hero-woman-fallback span {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
}

.hero-woman-fallback p {
  margin: 0;
  color: #2C3E50;
  font-weight: 600;
}

.insight-box {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
  border: 2px solid #e0e8ff; 
  border-radius: 12px; 
  padding: 24px;
  display: flex; 
  gap: 16px; 
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(100, 120, 200, 0.1);
  transition: all 0.3s ease;
}

.insight-box:hover {
  border-color: #d0d8ff;
  box-shadow: 0 12px 32px rgba(100, 120, 200, 0.15);
  transform: translateY(-2px);
}

.insight-icon {
  font-size: 32px; 
  flex-shrink: 0; 
  line-height: 1;
}

.insight-box p {
  font-size: 16px; 
  line-height: 1.6; 
  color: #2c3e50; 
  margin: 0;
}

.insight-box strong {
  color: #1a1a1a; 
  font-weight: 700;
}

/* ========================================
   7. SECTIONS
   ======================================== */

.section { 
  padding: 56px 20px; 
}

.section-alt {
  background: linear-gradient(180deg, var(--panel-alt), #f8f8f8);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.section-head { 
  margin-bottom: 28px; 
}

.section-head h2 { 
  margin: 0 0 8px; 
  font-size: 30px; 
}

.section-head .eyebrow { 
  margin-bottom: 10px; 
}

.card, .feature, .panel {
  background: var(--panel); 
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius); 
  box-shadow: var(--shadow);
}

.card { 
  padding: 18px; 
}

.feature, .panel { 
  padding: 16px; 
  box-shadow: none; 
}

.divider { 
  height: 1px; 
  background: rgba(0,0,0,.12); 
  margin: 16px 0; 
}

.muted { 
  color: var(--muted); 
}

.tiny { 
  font-size: 12px; 
  line-height: 1.55; 
}

.grid-3 { 
  margin-top: 18px; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px; 
}

.grid-2 { 
  margin-top: 18px; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
}

.feature h3, .panel h3 { 
  margin: 0 0 10px; 
  color: var(--cb-navy); 
}

.feature p { 
  margin: 0; 
  color: var(--muted); 
  line-height: var(--lh-body); 
}

.note {
  margin-top: 16px; 
  padding: 12px 14px; 
  border-radius: 12px;
  border: 2px solid rgba(44,62,80,.25); 
  background: rgba(44,62,80,.05);
  color: var(--cb-navy); 
  font-size: 15px;
}

.mt { 
  margin-top: 18px; 
}

.w-100 { 
  width: 100%; 
}

/* ========================================
   8. BUTTONS
   ======================================== */

.btn {
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  text-decoration: none; 
  border-radius: 8px; 
  padding: 12px 14px;
  border: 1px solid transparent; 
  font-weight: 900; 
  font-size: 15px;
  cursor: pointer; 
  user-select: none;
  transition: filter .15s ease, transform .1s ease, box-shadow .15s ease;
  min-height: 48px;
}

.btn-primary { 
  background: linear-gradient(135deg, var(--cb-cta), #FF8C00); 
  color: #fff; 
  border-color: rgba(0,0,0,.10); 
  font-weight: 900; 
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover { 
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.3);
}

.btn-primary:active { 
  transform: translateY(1px); 
}

.btn-large { 
  padding: 16px 28px; 
  font-size: 17px; 
  border-radius: 10px; 
  min-height: 55px; 
}

.btn-secondary { 
  background: var(--cb-green); 
  color: #fff; 
  border-color: rgba(0,0,0,.08); 
  text-transform: uppercase; 
  letter-spacing: .3px; 
  transition: filter 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover { 
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.btn-secondary:active { 
  transform: translateY(1px); 
}

.btn-ghost { 
  background: #fff; 
  border-color: rgba(0,0,0,.18); 
  color: var(--cb-navy); 
  font-weight: 700; 
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-ghost:hover { 
  background: rgba(44,62,80,.04);
  transform: translateY(-2px);
}

.btn-ghost:active { 
  transform: translateY(1px); 
}

/* ========================================
   9. CTA BANNER
   ======================================== */

.cta-banner {
  margin-top: 20px; 
  border: 2px solid rgba(255,87,34,.45);
  background: linear-gradient(90deg, rgba(255,87,34,.08), rgba(255,140,0,.08));
  border-radius: 12px; 
  padding: 16px; 
  display: flex; 
  align-items: center;
  justify-content: space-between; 
  gap: 12px; 
  flex-wrap: wrap;
}

.cta-banner--hero {
  display: block; 
  text-align: center; 
  border: 3px solid rgba(255,87,34,.45);
  background: linear-gradient(135deg, rgba(255,87,34,.07), rgba(255,140,0,.05));
  padding: 40px 28px; 
  margin-top: 24px;
}

.cta-banner-content { 
  max-width: 720px; 
  margin: 0 auto; 
}

.cta-main-title { 
  font-size: 28px; 
  font-weight: 900; 
  margin: 0 0 8px; 
  color: var(--cb-navy); 
  line-height: 1.2; 
}

.cta-main-sub { 
  margin: 0 0 22px; 
}

.cta-note { 
  margin-top: 16px; 
  display: block; 
}

.cta-arrow-hint { 
  text-align: center; 
  margin-top: 28px; 
}

.cta-arrow-hint span { 
  font-size: 36px; 
  display: block; 
  animation: bounce 1.4s ease-in-out infinite; 
}

.cta-arrow-hint p { 
  margin: 6px 0 0; 
  font-weight: 700; 
  font-size: 16px; 
  color: var(--cb-navy); 
}

.cta-secondary-wrap { 
  display: flex; 
  justify-content: center; 
  margin-top: 20px; 
}

/* ========================================
   10. MID-PAGE CTA
   ======================================== */

.mid-cta-band {
  margin-top: 36px; 
  padding: 28px 24px; 
  border-radius: 14px;
  border: 3px solid rgba(255,87,34,.40);
  background: linear-gradient(135deg, rgba(255,87,34,.07), rgba(255,140,0,.05)); 
  text-align: center;
}

.mid-cta-label { 
  font-size: 16px; 
  font-weight: 800; 
  margin: 0 0 16px; 
  color: var(--cb-navy); 
}

.mid-cta-btn { 
  max-width: 680px; 
  margin: 0 auto; 
}

.mid-cta-note { 
  margin-top: 12px; 
  display: block; 
}

/* ========================================
   11. SEAL ROW
   ======================================== */

.seal-row { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-top: 16px; 
}

.seal-row--center { 
  justify-content: center; 
}

.seal-badge {
  display: inline-flex; 
  align-items: center; 
  gap: 4px; 
  padding: 6px 14px;
  border-radius: 999px; 
  font-size: 12px; 
  font-weight: 700;
  background: rgba(44,62,80,.07); 
  border: 1px solid rgba(44,62,80,.15); 
  color: var(--cb-navy);
}

/* ========================================
   12. PRODUCT BRIDGE
   ======================================== */

.product-bridge {
  margin-top: 36px; 
  border-radius: 18px; 
  border: 3px solid rgba(255,87,34,.25);
  background: linear-gradient(135deg, rgba(255,87,34,.06), rgba(255,140,0,.04));
  padding: 32px 28px; 
  overflow: hidden;
}

.product-bridge-inner { 
  display: grid; 
  grid-template-columns: .9fr 1.1fr; 
  gap: 32px; 
  align-items: center; 
}

.product-bridge-image { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.product-bridge-img {
  width: 100%; 
  max-width: 340px; 
  height: auto; 
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.18)); 
  transition: transform .3s ease;
}

.product-bridge-img:hover { 
  transform: scale(1.03); 
}

.product-bridge-label { 
  font-size: 13px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .4px; 
  color: var(--cb-cta); 
  margin: 0 0 8px; 
}

.product-bridge-title { 
  font-size: 24px; 
  font-weight: 900; 
  color: var(--cb-navy); 
  margin: 0 0 12px; 
  line-height: 1.2; 
}

.product-bridge-desc { 
  font-size: 16px; 
  line-height: var(--lh-body); 
  color: var(--muted); 
  margin: 0 0 20px; 
}

.product-bridge-btn { 
  max-width: 100%; 
}

.product-bridge-seals { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
  margin-top: 14px; 
}

.mini-seal {
  display: inline-block; 
  padding: 4px 12px; 
  border-radius: 999px; 
  font-size: 11px; 
  font-weight: 700;
  background: rgba(0,188,64,.12); 
  border: 1px solid rgba(0,188,64,.28); 
  color: #007a29;
}

/* ========================================
   13. FINAL PRODUCT
   ======================================== */

.final-product-wrap { 
  display: flex; 
  justify-content: center; 
  margin: 32px 0 16px; 
}

.final-product-img { 
  width: min(360px, 100%); 
  height: auto; 
  display: block; 
  filter: drop-shadow(0 16px 36px rgba(0,0,0,.20)); 
}

/* ========================================
   14. LISTS
   ======================================== */

.checklist, .simple-list, .info-list { 
  margin: 10px 0 0; 
  padding-left: 18px; 
  color: var(--muted); 
  line-height: var(--lh-body); 
  font-size: var(--font-body); 
}

.simple-list { 
  list-style: none; 
  padding-left: 0; 
}

.simple-list li { 
  padding: 10px 0; 
  border-bottom: 1px solid var(--line); 
  font-size: var(--font-body); 
}

.simple-list li:last-child { 
  border-bottom: none; 
}

/* ========================================
   15. BRIDGE LINE
   ======================================== */

.bridge-line {
  background: var(--cb-green-bg); 
  border-left: 4px solid var(--cb-green);
  padding: 12px 16px; 
  margin: 20px 0; 
  border-radius: 0 8px 8px 0;
}

.bridge-line p { 
  margin: 0; 
  font-size: .95rem; 
  color: var(--cb-navy); 
  font-weight: 600; 
}

/* ========================================
   16. EDU BLOCKS
   ======================================== */

.edu-block { 
  max-width: var(--adv-width); 
  margin: 0 auto 24px; 
}

.edu-text { 
  font-size: var(--font-body); 
  line-height: var(--lh-body); 
  color: var(--text); 
  margin: 0 0 18px; 
}

.edu-text:last-child { 
  margin-bottom: 0; 
}

/* ========================================
   17. INFO FLOW
   ======================================== */

.info-flow { 
  margin-top: 28px; 
  display: grid; 
  gap: 20px; 
}

.info-card {
  display: grid; 
  grid-template-columns: 1.2fr .8fr; 
  gap: 16px; 
  align-items: stretch;
  background: var(--panel); 
  border: 1px solid rgba(0,0,0,.10); 
  border-radius: var(--radius);
  box-shadow: var(--shadow); 
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.info-text h3 { 
  margin: 0 0 10px; 
  color: var(--cb-cta); 
  font-size: 22px; 
  line-height: 1.2; 
}

.info-media { 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 220px; 
}

.arrow {
  position: absolute; 
  left: -18px; 
  width: 0; 
  height: 0;
  border-top: 14px solid transparent; 
  border-bottom: 14px solid transparent;
  border-left: 18px solid var(--cb-cta); 
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}

/* ========================================
   18. QUOTE GRID
   ======================================== */

.quote-grid { 
  margin-top: 24px; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
}

.quote-box {
  border-radius: 12px; 
  border: 2px solid rgba(44,62,80,.20);
  background: var(--cb-green-bg); 
  padding: 20px; 
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.quote-box p { 
  margin: 0; 
  font-weight: 900; 
  font-size: 17px; 
  line-height: 1.5; 
  color: var(--cb-navy); 
  font-style: italic; 
}

.quote-box p::before { 
  content: "\201C"; 
}

.quote-box p::after { 
  content: "\201D"; 
}

/* ========================================
   19. INGREDIENTS
   ======================================== */

.ingredients-flow { 
  margin-top: 32px; 
  display: grid; 
  gap: 24px; 
}

.ingredient-card {
  display: grid; 
  grid-template-columns: .75fr 1.25fr; 
  gap: 24px; 
  align-items: center;
  background: var(--panel); 
  border: 1px solid rgba(0,0,0,.10); 
  border-radius: var(--radius);
  box-shadow: var(--shadow); 
  padding: 24px; 
  transition: transform .2s ease, box-shadow .2s ease;
}

.ingredient-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 16px 36px rgba(0,0,0,.12); 
}

.ingredient-card--reverse { 
  grid-template-columns: 1.25fr .75fr; 
}

.ingredient-card--reverse .ingredient-media { 
  order: 2; 
}

.ingredient-card--reverse .ingredient-text { 
  order: 1; 
}

.ingredient-media { 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.ingredient-img { 
  width: 100%; 
  aspect-ratio: 1 / 1;
  object-fit: cover; 
  border-radius: 12px; 
  border: 2px dashed rgba(0,0,0,.18); 
  background: #fff; 
  display: block; 
}

/* ✅ CORRIGIDO: Fallback para aspect-ratio em navegadores antigos */
@supports not (aspect-ratio: 1) {
  .ingredient-img {
    height: 240px;
  }
}

.ingredient-badge {
  position: absolute; 
  top: -12px; 
  left: -12px; 
  width: 40px; 
  height: 40px;
  border-radius: 50%; 
  background: linear-gradient(135deg, var(--cb-cta), #FF8C00);
  color: #fff; 
  font-weight: 900; 
  font-size: 16px; 
  display: grid; 
  place-items: center;
  box-shadow: 0 4px 12px rgba(255,87,34,.45); 
  border: 2px solid #fff;
}

.ingredient-text h3 { 
  margin: 0 0 10px; 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--cb-navy); 
  line-height: 1.2; 
}

.ingredient-aka { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--muted); 
}

.ingredient-desc { 
  margin: 0 0 14px; 
  font-size: 15px; 
  line-height: var(--lh-body); 
  color: var(--muted); 
}

.ingredient-benefit { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
}

.benefit-tag {
  display: inline-block; 
  padding: 5px 12px; 
  border-radius: 999px; 
  font-size: 12px; 
  font-weight: 700;
  background: rgba(255,87,34,.10); 
  border: 1px solid rgba(255,87,34,.28); 
  color: var(--cb-cta-dark);
}

/* ========================================
   20. FORMULA PANEL
   ======================================== */

.formula-panel {
  margin-top: 32px; 
  border-radius: var(--radius); 
  border: 2px solid rgba(0,188,64,.35);
  background: var(--cb-green-bg); 
  padding: 28px;
}

.formula-panel-inner { 
  text-align: center; 
}

.formula-panel-inner h3 { 
  margin: 0 0 20px; 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--cb-navy); 
}

.formula-badges { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 10px; 
}

.formula-badge {
  display: inline-block; 
  padding: 8px 18px; 
  border-radius: 999px; 
  font-size: 13px; 
  font-weight: 700;
  background: rgba(0,188,64,.14); 
  border: 1px solid rgba(0,188,64,.35); 
  color: #007a29;
}

/* ========================================
   21. PHOTO SLOT
   ======================================== */

.photo-slot-img { 
  width: 100%; 
  aspect-ratio: 1.5 / 1;
  object-fit: cover; 
  border-radius: 12px; 
  border: 2px dashed rgba(0,0,0,.18); 
  background: #fff; 
  display: block; 
}

/* ✅ CORRIGIDO: Fallback para aspect-ratio */
@supports not (aspect-ratio: 1.5) {
  .photo-slot-img {
    height: 220px;
  }
}

/* ========================================
   22. FOOTER
   ======================================== */

.site-footer { 
  margin-top: 24px; 
  padding-top: 16px; 
  border-top: 1px solid rgba(0,0,0,.10); 
}

.footer-grid { 
  display: flex; 
  justify-content: space-between; 
  gap: 14px; 
  flex-wrap: wrap; 
  align-items: flex-start; 
}

.footer-links { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.footer-links a { 
  color: var(--muted); 
  text-decoration: none; 
  font-size: 14px; 
  transition: color .15s ease; 
}

.footer-links a:hover { 
  color: var(--cb-navy); 
}

#clickbank-trust-badge-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: center;
  min-height: 60px;
}

/* ========================================
   23. CENTERED DISCLAIMER
   ======================================== */

.centered-title { 
  text-align: center; 
  margin-bottom: 24px; 
}

.centered-title h2 { 
  margin: 0 0 8px; 
}

.centered-title .muted { 
  margin: 0; 
}

.centered-disclaimer {
  text-align: center; 
  margin-top: 24px; 
  padding: 20px;
  border: 1px solid var(--line); 
  border-radius: var(--radius);
  background: rgba(255,255,255,.60);
}

.disclaimer-text { 
  margin: 0; 
  line-height: 1.7; 
  color: var(--muted); 
  font-size: 13px; 
}

.disclaimer-text strong { 
  color: var(--cb-navy); 
  font-weight: 900; 
}

/* ========================================
   24. EXIT INTENT POPUP - ✅ CORRIGIDO COM PALETA
   ======================================== */

.exit-popup { 
  position: fixed; 
  inset: 0; 
  z-index: var(--z-modal); 
}

.exit-popup-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,.65); 
  backdrop-filter: blur(3px); 
}

.exit-popup-box {
  position: absolute; 
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 3px solid var(--cb-cta);
  border-radius: 18px; 
  padding: 36px 32px;
  max-width: 560px; 
  width: calc(100% - 32px);
  box-shadow: 0 24px 64px rgba(255,87,34,.35);
  text-align: center; 
  animation: popup-in .3s ease;
}

.exit-popup-close {
  position: absolute; 
  top: 14px; 
  right: 16px;
  background: linear-gradient(135deg, var(--cb-cta), var(--cb-cta-dark));
  border: none; 
  font-size: 24px; 
  cursor: pointer;
  color: #fff; 
  line-height: 1; 
  transition: all .15s ease;
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  display: grid; 
  place-items: center;
}

.exit-popup-close:hover { 
  background: linear-gradient(135deg, var(--cb-cta-dark), #c0392b);
  transform: scale(1.1);
}

.exit-popup-eyebrow {
  font-size: 13px; 
  font-weight: 700; 
  text-transform: uppercase;
  color: var(--cb-cta); 
  margin: 0 0 10px; 
  letter-spacing: .5px;
}

.exit-popup-title { 
  font-size: 22px; 
  font-weight: 900; 
  line-height: 1.25; 
  margin: 0 0 14px; 
  color: var(--cb-navy); 
}

.exit-popup-body { 
  font-size: 15px; 
  line-height: 1.65; 
  margin: 0 0 22px; 
  color: var(--text);
}

.exit-popup-body strong {
  color: var(--cb-cta); 
  font-weight: 700;
}

/* ✅ CORRIGIDO: Aplicar paleta de cores no CTA do exit popup */
.exit-popup .btn-cta-hero {
  background: linear-gradient(135deg, var(--cb-cta) 0%, var(--cb-orange-1) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.exit-popup .btn-cta-hero:hover {
  background: linear-gradient(135deg, var(--cb-cta-dark) 0%, #c0392b 100%);
  box-shadow: 0 12px 32px rgba(231, 76, 60, 0.5);
  transform: translateY(-2px);
}

.exit-popup .btn-cta-hero:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.exit-popup-dismiss {
  display: block; 
  margin-top: 14px; 
  cursor: pointer; 
  text-decoration: underline; 
  color: var(--muted); 
  background: none; 
  border: none; 
  font-size: 12px; 
  transition: color .15s ease;
}

.exit-popup-dismiss:hover { 
  color: var(--cb-cta); 
}

/* ========================================
   25. SCROLL TO TOP
   ======================================== */

.scroll-top {
  position: fixed; 
  bottom: 24px; 
  right: 24px; 
  width: 44px; 
  height: 44px;
  border-radius: 50%; 
  background: linear-gradient(135deg, var(--cb-cta), var(--cb-cta-dark));
  color: #fff; 
  border: none; 
  font-size: 20px; 
  cursor: pointer;
  box-shadow: 0 6px 18px var(--cb-cta-glow); 
  z-index: var(--z-dropdown);
  display: grid; 
  place-items: center; 
  transition: transform .2s ease, box-shadow .2s ease;
}

.scroll-top:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 10px 24px rgba(255,87,34,.55); 
}

/* ========================================
   26. FADE-IN ANIMATIONS
   ======================================== */

.fade-in { 
  opacity: 0; 
  transform: translateY(22px); 
  transition: opacity .55s ease, transform .55s ease; 
}

.fade-in.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ========================================
   27. STICKY MOBILE CTA - OTIMIZADO
   ======================================== */

.sticky-mobile-cta {
  display: none; 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0;
  z-index: var(--z-sticky); 
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.96), rgba(0,0,0,.88));
  border-top: 3px solid var(--cb-cta);
  box-shadow: 0 -6px 24px rgba(0,0,0,.35);
}

.sticky-mobile-btn {
  display: block; 
  width: 100%; 
  text-align: center; 
  text-decoration: none;
  padding: 14px 20px; 
  border-radius: 8px; 
  font-size: 14px; 
  font-weight: 900;
  letter-spacing: .3px; 
  text-transform: uppercase; 
  color: #fff;
  background: linear-gradient(135deg, var(--cb-cta), var(--cb-cta-dark));
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 6px 20px var(--cb-cta-glow);
  animation: pulse-cta 2.4s ease-in-out infinite; 
  min-height: 48px;
  transition: all .2s ease;
}

.sticky-mobile-btn:active { 
  transform: scale(.96); 
}

.sticky-mobile-btn:hover {
  background: linear-gradient(135deg, var(--cb-cta-dark), #c0392b);
  box-shadow: 0 8px 28px rgba(255,87,34,.5);
}

@media (max-width: 767px) {
  .sticky-mobile-cta { 
    display: block; 
  }
}

@media (min-width: 768px) {
  .sticky-mobile-cta { 
    display: none !important; 
  }
}

/* ========================================
   28. RESPONSIVIDADE COMPLETA
   ======================================== */

/* Extra Small (< 380px) */
@media (max-width: 379px) {
  :root { 
    --font-body: 15px; 
  }

  .header-inner { 
    padding: 8px 16px; 
    gap: 8px; 
  }

  .brand-mark { 
    width: 40px; 
    height: 40px; 
  }

  .brand-text strong { 
    font-size: 12px; 
  }

  .brand-tag { 
    font-size: 8px; 
    padding: 1px 4px; 
  }

  .nav { 
    gap: 4px; 
    width: 100%; 
    margin-top: 6px; 
  }

  .nav a { 
    font-size: 11px; 
    padding: 4px 6px; 
    flex: 1; 
    text-align: center; 
  }

  .hero { 
    padding: 30px 16px; 
  }

  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }

  h1 { 
    font-size: 22px; 
  }

  h2 { 
    font-size: 20px; 
  }

  h3 { 
    font-size: 16px; 
  }

  .hero-headline { 
    font-size: 24px; 
  }

  .hero-subheadline { 
    font-size: 14px; 
  }

  .eyebrow { 
    font-size: 10px; 
  }

  .lead { 
    font-size: 14px; 
  }

  .btn-cta-hero { 
    font-size: 12px; 
    padding: 12px 16px; 
  }

  .section { 
    padding: 30px 16px; 
  }

  .grid-3, .grid-2 { 
    grid-template-columns: 1fr; 
  }

  .product-bridge-inner { 
    grid-template-columns: 1fr; 
  }

  .ingredient-card { 
    grid-template-columns: 1fr; 
  }

  .quote-grid { 
    grid-template-columns: 1fr; 
  }

  .info-card { 
    grid-template-columns: 1fr; 
  }
}

/* Mobile (380px - 767px) */
@media (min-width: 380px) and (max-width: 767px) {
  :root { 
    --font-body: 16px; 
  }

  .header-inner { 
    padding: 10px 16px; 
    gap: 10px; 
  }

  .brand-mark { 
    width: 44px; 
    height: 44px; 
  }

  .brand-text strong { 
    font-size: 13px; 
  }

  .brand-tag { 
    font-size: 9px; 
    padding: 1px 6px; 
  }

  .nav { 
    gap: 6px; 
    width: 100%; 
    margin-top: 8px; 
  }

  .nav a { 
    font-size: 12px; 
    padding: 5px 8px; 
    flex: 1; 
    text-align: center; 
  }

  .hero { 
    padding: 40px 16px; 
  }

  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    align-items: center; 
  }

  .hero-headline { 
    font-size: 32px; 
    line-height: 1.15; 
    margin: 0 0 2px 0; 
  }

  .hero-subheadline { 
    font-size: 18px; 
    margin-top: 0px; 
  }

  .eyebrow { 
    font-size: 12px; 
    margin: 0 0 6px 0; 
  }

  .lead { 
    font-size: 15px; 
    line-height: 1.55; 
    margin: 12px 0 16px 0; 
  }

  .btn-cta-hero { 
    font-size: 14px; 
    padding: 14px 20px; 
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .presell-cta-note { 
    font-size: 12px; 
  }

  .insight-box { 
    padding: 16px; 
    gap: 12px; 
    flex-direction: column; 
  }

  .insight-icon { 
    font-size: 28px; 
  }

  .insight-box p { 
    font-size: 14px; 
  }

  .section { 
    padding: 40px 16px; 
  }

  .grid-3 { 
    grid-template-columns: 1fr; 
  }

  .grid-2 { 
    grid-template-columns: 1fr; 
  }

  .product-bridge-inner { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }

  .product-bridge { 
    padding: 20px 16px; 
    margin-top: 24px; 
  }

  .info-card { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }

  .ingredient-card { 
    grid-template-columns: 1fr; 
    gap: 16px; 
    padding: 16px; 
  }

  .ingredient-card--reverse { 
    grid-template-columns: 1fr; 
  }

  .quote-grid { 
    grid-template-columns: 1fr; 
  }

  .cta-banner { 
    flex-direction: column; 
    gap: 16px; 
  }

  .cta-banner--hero { 
    padding: 24px 16px; 
    margin-top: 16px; 
  }

  .cta-main-title { 
    font-size: 22px; 
  }

  .mid-cta-band { 
    padding: 20px 16px; 
    margin-top: 24px; 
  }

  .formula-panel { 
    padding: 20px 16px; 
    margin-top: 24px; 
  }

  h1 { 
    font-size: 28px; 
  }

  h2 { 
    font-size: 24px; 
  }

  h3 { 
    font-size: 18px; 
  }

  .section-head h2 { 
    font-size: 24px; 
  }

  .offer-title { 
    font-size: 18px; 
  }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  :root { 
    --font-body: 17px; 
  }

  .header-inner { 
    padding: 12px 16px; 
    gap: 16px; 
  }

  .brand-text strong { 
    font-size: 15px; 
  }

  .nav a { 
    font-size: 13px; 
    padding: 7px 10px; 
  }

  .hero { 
    padding: 50px 20px; 
  }

  .hero-grid { 
    grid-template-columns: 48% 52%; 
    gap: 40px; 
  }

  .hero-headline { 
    font-size: 44px; 
  }

  .hero-subheadline { 
    font-size: 24px; 
  }

  .lead { 
    font-size: 16px; 
  }

  .btn-cta-hero { 
    font-size: 16px; 
    padding: 16px 28px; 
  }

  .section { 
    padding: 48px 20px; 
  }

  .grid-3 { 
    grid-template-columns: repeat(2, 1fr); 
  }

  .product-bridge-inner { 
    grid-template-columns: 1fr 1.1fr; 
    gap: 24px; 
  }

  .ingredient-card { 
    grid-template-columns: 1fr 1.2fr; 
    gap: 20px; 
  }

  .quote-grid { 
    grid-template-columns: 1fr; 
  }

  .info-card { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }

  .cta-banner--hero { 
    padding: 32px 24px; 
  }

  .cta-main-title { 
    font-size: 24px; 
  }
}

/* Desktop (> 1024px) */
@media (min-width: 1025px) {
  .sticky-mobile-cta { 
    display: none !important; 
  }
}

/* ========================================
   29. ANIMAÇÕES KEYFRAMES
   ======================================== */

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.fade-in { 
  animation: fadeIn 0.8s ease-out; 
}

@keyframes pulse-cta {
  0%   { 
    box-shadow: 0 8px 28px rgba(255,87,34,.40); 
  }
  50%  { 
    box-shadow: 0 8px 44px rgba(255,87,34,.70); 
  }
  100% { 
    box-shadow: 0 8px 28px rgba(255,87,34,.40); 
  }
}

@keyframes bounce {
  0%, 100% { 
    transform: translateY(0); 
  }
  50%       { 
    transform: translateY(8px); 
  }
}

@keyframes popup-in {
  from { 
    transform: translate(-50%, -46%); 
    opacity: 0; 
  }
  to   { 
    transform: translate(-50%, -50%); 
    opacity: 1; 
  }
}

/* ========================================
   30. HERO GRID SINGLE
   ======================================== */

.hero-grid--single {
  grid-template-columns: 1fr;
  max-width: var(--adv-width);
  margin: 0 auto;
}

/* ========================================
   FIM DO CSS - v2001
   ======================================== */