/* ==========================================================================
   DESIGN SYSTEM & VARIABLES — PREMIUM ADVENTIST THEME
   ========================================================================== */
:root {
  --green-deep: #0B321A;
  --green-dark: #132a13;
  --green-natural: #245C32;
  --green-medium: #3D7A3F;
  --cream: #F7F0E2;
  --off-white: #FFFDF8;
  --gold: #E9B52F;
  --gold-dark: #c5960c;
  --white: #FFFFFF;
  --danger: #bd2d2d;
  --text-dark: #1a2e1c;
  --text-muted: #5a6e5c;
  
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(11, 50, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 50, 26, 0.1);
  --shadow-lg: 0 16px 40px rgba(11, 50, 26, 0.14);
  --shadow-gold: 0 8px 24px rgba(233, 181, 47, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }

/* ==========================================================================
   GLOBAL TEXT UTILITIES
   ========================================================================== */
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-muted-light { color: rgba(255,255,255,0.65) !important; }
.text-center { text-align: center; }

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #061208 0%, var(--green-deep) 50%, #061208 100%);
  color: var(--gold);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 15px rgba(0,0,0,0.35);
  font-family: var(--font-heading);
  text-transform: uppercase;
  border-bottom: 2px solid rgba(233,181,47,0.25);
}

/* ==========================================================================
   BUTTONS — PREMIUM CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-cta {
  background: linear-gradient(135deg, #E9B52F 0%, #f0c84a 50%, #E9B52F 100%);
  color: var(--green-deep);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(233,181,47,0.45);
  filter: brightness(1.05);
}

.btn-primary {
  background: var(--green-natural);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-natural);
  border: 2px solid var(--green-natural);
}
.btn-outline:hover {
  background: var(--green-natural);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: var(--shadow-gold);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(233,181,47,0.4);
}

.btn-secondary {
  background: var(--cream);
  color: var(--green-natural);
  border: 2px solid var(--green-natural);
}
.btn-secondary:hover {
  background: var(--green-natural);
  color: var(--white);
}

.btn-full-width { width: 100%; }

/* Animations */
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.btn-pulse { animation: pulse 2.5s infinite ease-in-out; }
.btn-shimmer {
  background: linear-gradient(120deg, #E9B52F 30%, #f7e68f 45%, #E9B52F 60%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite linear;
  color: var(--green-deep);
}

/* ==========================================================================
   SECTION HEADERS — V2 PREMIUM
   ========================================================================== */
.section-header-v2 { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-natural);
  letter-spacing: 3px;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(36,92,50,0.08);
  border-radius: var(--radius-full);
}
.section-eyebrow-gold {
  color: var(--gold);
  background: rgba(233,181,47,0.12);
}
.section-title-v2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-desc-v2 {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Decorative Leaves */
.section-leaf {
  position: absolute;
  font-size: 3rem;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.section-leaf-left { top: 40px; left: 20px; transform: rotate(-20deg); }
.section-leaf-right { top: 60px; right: 20px; transform: rotate(15deg); }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-reveal {
  opacity: 0;
  transform: translateY(30px);
}
.anim-reveal.visible {
  animation: revealUp 0.6s ease-out forwards;
}

/* ==========================================================================
   BLOCO 01 — HERO (PRIMEIRA DOBRA — PRESERVED)
   ========================================================================== */
.hero-section {
  padding: 32px 0 48px;
  background: linear-gradient(180deg, #faf7ef 0%, #f5f0e2 35%, #eee8d5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(58,95,67,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(212,175,55,0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(58,95,67,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-natural) 100%);
  color: var(--white);
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  padding: 8px 20px; border-radius: var(--radius-full);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(19,42,19,0.3);
  border: 1px solid rgba(233,181,47,0.3);
}
.hero-badge-star { font-size: 1rem; filter: drop-shadow(0 0 3px rgba(233,181,47,0.6)); }
.hero-title {
  font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;
  max-width: 800px; margin-bottom: 20px; line-height: 1;
  color: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.hero-title-line { display: block; width: 100%; }
.hero-title-tier1 { font-size: clamp(3rem,8vw,5.5rem); font-weight: 700; letter-spacing: -1px; line-height: 1.05; }
.hero-title-tier2 { font-size: clamp(2rem,5.5vw,3.5rem); font-weight: 700; letter-spacing: 1px; line-height: 1.15; margin-top: 2px; }
.hero-title-tier3 { font-size: clamp(1rem,2.8vw,1.55rem); font-weight: 600; letter-spacing: 0.5px; line-height: 1.4; margin-top: 8px; color: #2c3e2e; }
.text-gold-underline { position: relative; display: inline-block; }
.text-gold-underline::after {
  content:''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), #f0d060, var(--gold)); border-radius: 2px;
}
.hero-sub-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a3618 50%, var(--green-deep) 100%);
  color: var(--white); padding: 14px 28px; border-radius: 10px;
  max-width: 700px; width: 100%; margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(19,42,19,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(233,181,47,0.2);
}
.hero-sub-banner p {
  font-family: var(--font-heading); font-size: clamp(0.9rem,2.2vw,1.15rem);
  font-weight: 500; line-height: 1.5; letter-spacing: 0.5px; text-transform: uppercase;
}
.text-gold-sub { color: #f0d060; font-weight: 700; }
.hero-media-wrapper {
  position: relative; width: 100%; max-width: 680px; margin-bottom: 40px;
  border-radius: 16px; overflow: visible;
  background: radial-gradient(ellipse at center, rgba(246,243,235,0.9) 0%, transparent 70%);
}
.hero-media-wrapper::before {
  content:''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(233,181,47,0.08) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.hero-image {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 1;
  filter: drop-shadow(0 12px 30px rgba(44,62,46,0.2));
  transition: transform 0.5s ease;
}
.hero-media-wrapper:hover .hero-image { transform: scale(1.02); }
.hero-bullets-box {
  background: var(--white); border: 1px solid rgba(36,92,50,0.08);
  padding: 28px 24px; border-radius: var(--radius-lg);
  max-width: 780px; margin-bottom: 36px; box-shadow: var(--shadow-md); text-align: left;
}
.hero-bullets-intro { font-size: 1rem; color: var(--text-dark); font-weight: 500; margin-bottom: 20px; text-align: center; }
.hero-bullets-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.bullet-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--green-natural); }
.bullet-icon { background: rgba(36,92,50,0.08); color: var(--green-natural); width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; font-size: 0.8rem; }
.hero-cta-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-subtitle { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   BLOCO 02 — POR DENTRO DO GUIA (CREME)
   ========================================================================== */
.inside-section {
  padding: 72px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.inside-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.carousel-container { width: 100%; touch-action: pan-y; position: relative; }
.carousel-track-wrapper { overflow: hidden; width: 100%; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.25,1,0.5,1); width: 100%; }
.carousel-slide { width: 100%; flex-shrink: 0; height: auto; display: block; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.carousel-button {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9); border: none; width: 42px; height: 42px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--green-deep); box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition); z-index: 10;
}
.carousel-button:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-button-prev { left: 12px; }
.carousel-button-next { right: 12px; }
.carousel-indicators { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid transparent; cursor: pointer; padding: 0; transition: var(--transition); }
.carousel-dot.active { background: var(--white); transform: scale(1.2); box-shadow: 0 2px 4px rgba(0,0,0,0.2); }

.inside-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.inside-card {
  display: flex;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-natural);
  transition: var(--transition);
}
.inside-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}
.inside-card-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.inside-card-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--green-deep); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.inside-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   BLOCO 03 — BENEFÍCIOS / TRANSFORMAÇÃO (VERDE ESCURO)
   ========================================================================== */
.benefits-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--green-deep) 0%, #0a2815 100%);
  position: relative;
  overflow: hidden;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.benefit-card::before {
  content:''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gold); opacity: 0; transition: var(--transition); border-radius: 4px 0 0 4px;
}
.benefit-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon-wrap {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(233,181,47,0.12); border-radius: 12px; margin-bottom: 16px; font-size: 1.4rem;
}
.benefit-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.benefit-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ==========================================================================
   BLOCO 04 — URGÊNCIA (VERDE MÉDIO)
   ========================================================================== */
.urgency-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--green-natural) 0%, var(--green-deep) 100%);
  color: var(--white);
  text-align: center;
}
.urgency-content { max-width: 700px; margin: 0 auto; }
.urgency-alert-badge {
  display: inline-block; background: rgba(233,181,47,0.15);
  color: var(--gold); padding: 6px 18px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
  border: 1px solid rgba(233,181,47,0.3);
}
.urgency-title {
  font-family: var(--font-heading); font-size: clamp(1.5rem,4vw,2.2rem);
  font-weight: 700; margin-bottom: 14px; text-transform: uppercase; line-height: 1.2;
}
.urgency-subtitle { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.countdown-container {
  background: rgba(0,0,0,0.25); padding: 24px 28px;
  border-radius: var(--radius-lg); max-width: 400px;
  margin: 0 auto 28px; border: 1px solid rgba(255,255,255,0.06);
}
.countdown-text { font-family: var(--font-heading); font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.timer-display { display: flex; align-items: center; justify-content: center; gap: 12px; }
.timer-segment { display: flex; flex-direction: column; align-items: center; }
.timer-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.timer-label { font-family: var(--font-heading); font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; letter-spacing: 1px; }
.timer-colon { font-size: 2.5rem; color: rgba(233,181,47,0.5); font-weight: 700; line-height: 1; padding-bottom: 16px; }
.urgency-badge-info { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ==========================================================================
   BLOCO 05 — IDEAL PARA VOCÊ (CREME)
   ========================================================================== */
.ideal-section {
  padding: 72px 0;
  background: var(--off-white);
}
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ideal-card {
  background: var(--white);
  border: 1px solid rgba(36,92,50,0.06);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.ideal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(233,181,47,0.3); }
.ideal-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.ideal-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--green-deep); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.ideal-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   BLOCO 06 — PRODUTO PRINCIPAL (VERDE ESCURO)
   ========================================================================== */
.main-product-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--green-deep) 0%, #091f10 100%);
  position: relative;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.product-image-side { position: relative; display: flex; justify-content: center; }
.product-image {
  width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}
.product-image-side:hover .product-image { transform: rotate(-2deg) scale(1.03); }
.product-badge-float {
  position: absolute; top: 8%; right: 5%;
  background: var(--gold); color: var(--green-deep);
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: var(--radius-full); box-shadow: var(--shadow-gold);
  letter-spacing: 1px;
}
.product-info-side {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.product-name {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 14px; text-transform: uppercase;
  line-height: 1.25;
}
.product-summary { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.product-features-box { margin-bottom: 28px; }
.product-features-title {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold);
  margin-bottom: 16px;
}
.product-features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.product-features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.check-bullet {
  color: var(--gold); font-weight: bold;
  background: rgba(233,181,47,0.12); width: 22px; height: 22px; min-width: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 0.7rem;
}

/* ==========================================================================
   BLOCO 07 — BÔNUS VAULT (VERDE MUITO ESCURO)
   ========================================================================== */
.bonus-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #081a0d 0%, var(--green-deep) 50%, #081a0d 100%);
  position: relative;
  overflow: hidden;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,181,47,0.15);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.bonus-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(233,181,47,0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}
.bonus-number {
  display: inline-block;
  background: var(--gold); color: var(--green-deep);
  font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full);
  letter-spacing: 1px; margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}
.bonus-icon-big { font-size: 2.5rem; margin-bottom: 14px; }
.bonus-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.bonus-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 18px; }
.bonus-price-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.bonus-old-price { font-size: 0.85rem; text-decoration: line-through; color: rgba(255,255,255,0.35); }
.bonus-free-tag {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 1.5px;
}

/* ==========================================================================
   BLOCO 08 — PREÇOS (CREME)
   ========================================================================== */
.pricing-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(36,92,50,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.recommended-card {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(233,181,47,0.18);
  background: linear-gradient(180deg, var(--white) 0%, #fffef8 100%);
}
.recommended-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #f0c84a 100%);
  color: var(--green-deep);
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  padding: 6px 20px; border-radius: var(--radius-full);
  letter-spacing: 1px; box-shadow: var(--shadow-gold); white-space: nowrap;
}
.price-card-header { text-align: center; margin-bottom: 20px; }
.plan-name {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  color: var(--green-deep); margin-bottom: 6px; letter-spacing: 1px;
}
.plan-desc { font-size: 0.88rem; color: var(--text-muted); }
.price-box {
  text-align: center; margin-bottom: 20px; padding: 16px 0;
  border-top: 1px solid rgba(36,92,50,0.06);
  border-bottom: 1px solid rgba(36,92,50,0.06);
  display: flex; flex-direction: column; gap: 4px;
}
.price-original { font-size: 0.88rem; text-decoration: line-through; color: var(--text-muted); }
.price-label { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; color: var(--green-natural); letter-spacing: 1px; }
.gold-label { color: var(--gold-dark); }
.price-value-container { display: inline-flex; align-items: flex-start; justify-content: center; color: var(--green-deep); }
.price-value-container .currency { font-size: 1.4rem; font-weight: 700; margin-top: 6px; margin-right: 4px; }
.price-value-container .price-amount { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; line-height: 1; }
.price-value-gold { color: var(--gold-dark); }
.value-stack-info { font-size: 0.78rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.value-stack-info .strike { text-decoration: line-through; }
.value-stack-info .total-worth { font-weight: 700; color: var(--danger); }
.discount-badge-banner {
  background: rgba(233,181,47,0.1); color: var(--gold-dark);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem;
  padding: 8px 16px; border-radius: var(--radius-sm);
  text-align: center; margin-bottom: 20px; letter-spacing: 0.5px;
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.plan-feature-icon { font-size: 1rem; }
.disabled-feature { color: var(--text-muted); opacity: 0.5; }
.highlight-feature { font-weight: 600; color: var(--green-deep); }
.plan-warning-text {
  color: var(--danger); font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600; text-align: center;
  margin-top: 14px; line-height: 1.4; letter-spacing: 0.5px;
}

/* ==========================================================================
   BLOCO 08.5 — GARANTIA
   ========================================================================== */
.guarantee-section {
  padding: 56px 0;
  background: var(--cream);
}
.guarantee-wrapper {
  display: flex; align-items: center; gap: 32px;
  background: var(--white); padding: 36px 40px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 2px solid rgba(233,181,47,0.2);
  max-width: 800px; margin: 0 auto;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-natural) 0%, var(--green-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(11,50,26,0.3);
  border: 3px solid var(--gold);
}
.guarantee-seal-inner { display: flex; flex-direction: column; align-items: center; color: var(--white); }
.guarantee-days { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--gold); }
.guarantee-label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.guarantee-content h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.guarantee-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   BLOCO 09 — FAQ (VERDE ESCURO)
   ========================================================================== */
.faq-section {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--green-deep) 0%, #091f10 100%);
}
.faq-accordion-wrapper { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(233,181,47,0.3); }
.faq-trigger {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--white); text-align: left; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px; gap: 16px;
}
.faq-icon-plus {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400;
  color: var(--gold); transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-trigger[aria-expanded="true"] .faq-icon-plus { transform: rotate(45deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 24px;
}
.faq-trigger[aria-expanded="true"] + .faq-content { padding: 0 24px 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.faq-content p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ==========================================================================
   BLOCO 10 — RODAPÉ (VERDE MUITO ESCURO)
   ========================================================================== */
.footer-section {
  background: #061208;
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 1px; }
.footer-about { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 320px; }
.footer-support h4, .footer-trust h4 {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; color: var(--gold); letter-spacing: 1.5px; margin-bottom: 16px;
}
.support-email { color: var(--white); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: var(--transition); display: inline-block; }
.support-email:hover { color: var(--gold); }
.badges-row { display: flex; flex-direction: column; gap: 10px; }
.trust-badge-item { display: flex; align-items: center; gap: 8px; }
.trust-badge-item .badge-icon { font-size: 1.2rem; }
.trust-badge-item .badge-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-divider { border: 0; height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-link-item { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.8rem; transition: var(--transition); }
.footer-link-item:hover { color: var(--white); }

/* ==========================================================================
   MODAL STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(8,26,13,0.75); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 16px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 480px; padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35); position: relative;
  transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow-y: auto; max-height: 90vh;
}
.modal-overlay.active .modal-card { transform: scale(1); }
.modal-close-btn { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.2rem; color: var(--text-muted); cursor: pointer; padding: 4px; transition: var(--transition); }
.modal-close-btn:hover { color: var(--text-dark); }
.modal-header { text-align: center; margin-bottom: 20px; }
.modal-lock-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.modal-header h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; text-transform: uppercase; }
.modal-header p { font-size: 0.88rem; color: var(--text-muted); }
.modal-accent { color: var(--green-natural); }
.modal-price-summary { background: var(--cream); padding: 14px 20px; border-radius: var(--radius-md); display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1rem; margin-bottom: 20px; }
.modal-final-price { color: var(--green-natural); font-size: 1.2rem; font-weight: 800; }
.payment-tabs { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 20px; }
.tab-btn {
  background: var(--cream); border: 1px solid rgba(36,92,50,0.06);
  padding: 10px 4px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: var(--transition); color: var(--text-muted);
}
.tab-btn:hover { background: #e8e3d6; color: var(--text-dark); }
.tab-btn.active { background: var(--green-natural); color: var(--white); border-color: var(--green-natural); }
.tab-content-pane { display: none; animation: fadeIn 0.25s ease-out; }
.tab-content-pane.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }
.payment-instructions { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; text-align: center; }
.hidden { display: none !important; }
.pix-result-box { display: flex; flex-direction: column; align-items: center; margin-top: 20px; background: #fffef5; border: 1px dashed var(--gold); padding: 20px; border-radius: var(--radius-md); animation: fadeIn 0.3s; }
.qr-placeholder { background: var(--white); padding: 10px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 14px; color: var(--green-deep); }
.pix-copia-cola-label { font-size: 0.78rem; font-weight: 700; color: var(--green-natural); margin-bottom: 6px; text-align: left; width: 100%; }
.pix-key-wrapper { display: flex; width: 100%; gap: 6px; }
.pix-key-wrapper input { flex-grow: 1; background: var(--white); border: 1px solid rgba(36,92,50,0.12); border-radius: var(--radius-sm); padding: 8px 10px; font-family: monospace; font-size: 0.75rem; color: var(--text-dark); outline: none; }
.btn-copy-pix { background: var(--green-natural); color: var(--white); border: none; padding: 8px 14px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: var(--transition); }
.btn-copy-pix:hover { background: var(--green-deep); }
.copy-success-message { font-size: 0.78rem; color: var(--green-natural); font-weight: 700; margin-top: 6px; }
.pix-timer-alert { font-size: 0.78rem; color: var(--text-muted); margin-top: 14px; font-weight: 600; }
.card-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--green-deep); }
.form-group input { padding: 11px 14px; border: 1px solid rgba(36,92,50,0.12); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark); outline: none; transition: var(--transition); }
.form-group input:focus { border-color: var(--green-natural); box-shadow: 0 0 0 3px rgba(36,92,50,0.12); }
.form-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.boleto-result-box { display: flex; flex-direction: column; align-items: center; margin-top: 20px; background: var(--cream); padding: 20px; border-radius: var(--radius-md); border: 1px solid rgba(36,92,50,0.08); text-align: center; gap: 10px; animation: fadeIn 0.3s; }
.boleto-barcode-icon { font-family: monospace; font-size: 0.85rem; background: var(--white); padding: 10px 20px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); letter-spacing: 2px; color: var(--text-dark); width: 100%; }
.modal-footer { text-align: center; margin-top: 20px; border-top: 1px solid rgba(36,92,50,0.06); padding-top: 14px; }
.modal-footer p { font-size: 0.72rem; color: var(--text-muted); }
.success-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.success-icon-badge { font-size: 2.8rem; margin-bottom: 14px; }
.success-card h2 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--green-natural); margin-bottom: 10px; }
.success-card p { font-size: 0.92rem; color: var(--text-muted); }
.success-details-box { background: var(--cream); width: 100%; padding: 18px; border-radius: var(--radius-md); margin-top: 20px; text-align: left; }
.success-details-box p { font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.success-details-box p:last-child { margin-bottom: 0; }
.status-approved { background: rgba(36,92,50,0.1); color: var(--green-natural); padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; }

/* ==========================================================================
   RESPONSIVE — MOBILE FIRST PRIORITY
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title-tier1 { font-size: clamp(2.5rem,7vw,4.5rem); }
  .hero-title-tier2 { font-size: clamp(1.7rem,4.5vw,3rem); }
  .hero-title-tier3 { font-size: clamp(0.9rem,2.2vw,1.3rem); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .ideal-grid { grid-template-columns: repeat(2,1fr); }
  .bonus-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hero-section { padding: 20px 0 32px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 10px; letter-spacing: 1px; }
  .hero-title { margin-bottom: 14px; }
  .hero-title-tier1 { font-size: clamp(2.2rem,10vw,3.2rem); }
  .hero-title-tier2 { font-size: clamp(1.4rem,6vw,2.2rem); }
  .hero-title-tier3 { font-size: clamp(0.82rem,3vw,1.1rem); margin-top: 6px; }
  .hero-sub-banner { padding: 10px 16px; margin-bottom: 16px; border-radius: 8px; }
  .hero-sub-banner p { font-size: clamp(0.75rem,2.8vw,0.95rem); line-height: 1.4; }
  .hero-media-wrapper { max-width: 90%; margin-bottom: 24px; }
  .hero-bullets-grid { grid-template-columns: 1fr; gap: 10px; }

  .inside-grid { grid-template-columns: 1fr; gap: 32px; }
  .inside-image-container { max-width: 500px; margin: 0 auto; }
  .inside-cards-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }
  .ideal-grid { grid-template-columns: 1fr; }

  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-image-side { max-width: 280px; margin: 0 auto; }
  .product-info-side { padding: 28px 20px; }

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

  .pricing-grid { grid-template-columns: 1fr; gap: 40px; max-width: 440px; }

  .guarantee-wrapper { flex-direction: column; text-align: center; padding: 28px 24px; }
  .guarantee-seal { width: 90px; height: 90px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-about { margin: 0 auto; }
  .badges-row { align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-leaf { display: none; }
}

@media (max-width: 480px) {
  .top-announcement { font-size: 0.7rem; padding: 8px 10px; letter-spacing: 0.8px; }
  .hero-section { padding: 14px 0 24px; }
  .hero-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 8px; }
  .hero-title-tier1 { font-size: 2.4rem; }
  .hero-title-tier2 { font-size: 1.5rem; }
  .hero-title-tier3 { font-size: 0.82rem; margin-top: 4px; line-height: 1.35; }
  .hero-sub-banner { padding: 8px 12px; margin-bottom: 12px; }
  .hero-sub-banner p { font-size: 0.72rem; letter-spacing: 0.3px; }
  .hero-media-wrapper { max-width: 95%; margin-bottom: 20px; }
  .hero-bullets-box { padding: 20px 14px; }

  .inside-section, .benefits-section, .ideal-section, .main-product-section, .bonus-section, .pricing-section, .faq-section { padding: 48px 0; }
  .section-header-v2 { margin-bottom: 32px; }
  .section-title-v2 { font-size: 1.5rem; }

  .benefit-card { padding: 20px 18px; }
  .ideal-card { padding: 24px 18px; }
  .bonus-card { padding: 24px 20px; }
  .price-card { padding: 28px 18px; }
  .price-value-container .price-amount { font-size: 2.8rem; }

  .guarantee-wrapper { padding: 24px 18px; }
  .guarantee-seal { width: 80px; height: 80px; }
  .guarantee-days { font-size: 1.8rem; }

  .timer-num { font-size: 2rem; }
  .timer-colon { font-size: 2rem; }

  .modal-card { padding: 24px; }
  .payment-tabs { grid-template-columns: 1fr; gap: 5px; }
}

/* ==========================================================================
   BÔNUS SECTION V3 (PREMIUM EDITORIAL)
   ========================================================================== */
.bonus-section-v3 {
  position: relative;
  background-color: var(--color-cream);
  /* Very subtle organic paper texture effect with radial gradients */
  background-image: radial-gradient(circle at 10% 20%, rgba(200, 180, 150, 0.05) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(200, 180, 150, 0.05) 0%, transparent 20%);
  padding: 100px 20px;
  overflow: hidden;
}

/* Decorative leaves */
.bonus-leaf {
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.bonus-leaf-tl {
  top: -20px;
  left: -20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233D7A3F"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 7,11.5 7,11.5C7,11.5 5,7.25 17,8Z"/></svg>');
  transform: rotate(-30deg) scale(2);
}
.bonus-leaf-tr {
  top: -20px;
  right: -20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%233D7A3F"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 7,11.5 7,11.5C7,11.5 5,7.25 17,8Z"/></svg>');
  transform: rotate(110deg) scale(2);
}

.bonus-header-v3 {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.bonus-eyebrow {
  display: inline-block;
  background-color: var(--color-dark-green);
  color: var(--color-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bonus-headline {
  font-family: var(--font-heading);
  color: var(--color-dark-green);
  font-size: 3.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

.bonus-number-giant {
  font-size: 6.5rem;
  color: var(--color-gold);
  display: inline-block;
  line-height: 0.8;
  vertical-align: bottom;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
}

.bonus-text-green {
  color: var(--color-dark-green);
}

.bonus-desc {
  font-size: 1.125rem;
  color: #4A5D50;
  max-width: 600px;
  margin: 0 auto;
}

.bonus-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bonus-card-v3 {
  background-color: #FDFAF5;
  border: 1px solid rgba(217, 163, 33, 0.3);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.bonus-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-color: rgba(217, 163, 33, 0.6);
}

.bonus-badge-pill {
  background-color: var(--color-dark-green);
  color: #FFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(11, 50, 26, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-image-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.bonus-mockup {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.bonus-card-v3:hover .bonus-mockup {
  transform: scale(1.05);
}

.bonus-content-v3 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.bonus-title-v3 {
  font-family: var(--font-heading);
  color: var(--color-dark-green);
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.bonus-text-v3 {
  color: #4A5D50;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bonus-price-row-v3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bonus-value-wrapper {
  display: flex;
  flex-direction: column;
}

.bonus-old-value {
  font-size: 0.85rem;
  color: #7A8D80;
}
.bonus-old-value del {
  color: #999;
}

.bonus-tag-free {
  background-color: var(--color-dark-green);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.bonus-benefit-v3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-dark-green);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.benefit-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsivo Bônus V3 */
@media (max-width: 1200px) {
  .bonus-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bonus-headline {
    font-size: 2.2rem;
  }
  .bonus-number-giant {
    font-size: 4rem;
  }
}

@media (max-width: 580px) {
  .bonus-grid-v3 {
    grid-template-columns: 1fr;
  }
  .bonus-headline {
    font-size: 2rem;
  }
  .bonus-number-giant {
    font-size: 3.5rem;
  }
}
