/* ==========================================================================
   DESIGN SYSTEM & CONSTANTS - PROMPT SPECIFIED PALETTE
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --green-primary: #3F7D45;
  --green-dark: #183D27;
  --green-medium: #6FAF72;
  --green-light: #DDEEDC;
  --cream-light: #F8F6EC;
  --white: #FFFFFF;
  --text-dark: #1B2A20;
  --accent-soft: #B8D8A9;
  --accent-gold: #D4AF37;
  
  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(24, 61, 39, 0.06);
  --shadow-md: 0 8px 24px rgba(24, 61, 39, 0.10);
  --shadow-lg: 0 16px 36px rgba(24, 61, 39, 0.16);

  /* Fonts */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --max-mobile-width: 460px;
  --header-height: 60px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: #0F1A13; /* Ambient desktop background */
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(111, 175, 114, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(63, 125, 69, 0.15) 0%, transparent 40%);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

/* App Main Container (Mobile Constrained Frame) */
.page-wrapper {
  width: 100%;
  max-width: var(--max-mobile-width);
  background-color: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
}

p {
  color: #334438;
}

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

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

/* ==========================================================================
   DECORATIVE ORGANIC HEADLINE HIGHLIGHTS
   ========================================================================== */
.highlight-green {
  color: var(--green-primary);
  display: inline-block;
  position: relative;
  font-weight: 700;
}

.highlight-dark-green {
  color: var(--green-dark);
  display: inline-block;
  position: relative;
  font-weight: 700;
}

.organic-stroke {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.organic-stroke::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, rgba(111, 175, 114, 0) 0%, rgba(63, 125, 69, 1) 100%);
  border-radius: 3px;
  pointer-events: none;
}

/* ==========================================================================
   1. STICKY TOP BAR
   ========================================================================== */
.fixed-top-bar {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(18, 38, 25, 0.98);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.top-bar-timer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
}

.timer-banner-icon {
  width: 20px;
  height: 20px;
  color: #4ADE80;
  flex-shrink: 0;
}

.timer-banner-label {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.timer-banner-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(74, 222, 128, 0.5);
  border-radius: 8px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.timer-clock {
  color: #4ADE80;
  font-family: 'Poppins', monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
}

@media (max-width: 380px) {
  .timer-banner-icon {
    width: 17px;
    height: 17px;
  }
  .timer-banner-label {
    font-size: 0.76rem;
  }
  .timer-banner-box {
    padding: 2px 7px;
    border-radius: 6px;
  }
  .timer-clock {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--white) 100%);
  padding: 24px 16px 32px 16px;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--green-light);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(63, 125, 69, 0.2);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(63, 125, 69, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(63, 125, 69, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(63, 125, 69, 0); }
}

.hero-headline-1 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-headline-2 {
  font-size: 0.92rem;
  color: #4A5D50;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 24px;
  padding: 0 4px;
}

.hero-mockup-wrapper {
  position: relative;
  margin: 0 auto 24px auto;
  max-width: 450px;
  width: 100%;
}

.hero-mockup-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, var(--green-light) 0%, rgba(221, 238, 220, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-mockup-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 12px 24px rgba(24, 61, 39, 0.15));
  width: 100%;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--cream-light);
  border: 1px solid #E2DEC9;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}

.benefit-pill svg {
  width: 14px;
  height: 14px;
  fill: var(--green-primary);
}

/* CTA BUTTONS */
.btn-primary {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #4A8C50 0%, #2A6030 100%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(42, 96, 48, 0.35);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.btn-primary:active {
  transform: scale(0.98);
}

.hero-subtext {
  font-size: 0.78rem;
  color: #66776B;
  margin-top: 10px;
}

/* ==========================================================================
   3. SECTION: FOR WHOM IS THIS MATERIAL?
   ========================================================================== */
.target-section {
  background-color: var(--white);
  padding: 36px 16px;
  border-top: 1px solid var(--green-light);
}

.section-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1.35;
}

.target-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.target-card {
  background-color: var(--cream-light);
  border: 1px solid #EBE7D8;
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.target-card:hover, .target-card:active {
  border-color: var(--green-medium);
  transform: translateY(-2px);
}

.card-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--green-primary);
}

.card-content h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.card-content p {
  font-size: 0.84rem;
  color: #445548;
  line-height: 1.45;
}

.target-closing-box {
  background: linear-gradient(135deg, var(--green-light) 0%, #EBF5EA 100%);
  border-left: 4px solid var(--green-primary);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.84rem;
  color: var(--green-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================================
   4. SECTION: MATERIAL DEMO (DUAL CAROUSELS)
   ========================================================================== */
.demo-section {
  background-color: var(--cream-light);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
}

.demo-header {
  padding: 0 16px;
  text-align: center;
  margin-bottom: 24px;
}

.demo-subtitle {
  font-size: 0.86rem;
  color: #556658;
  margin-top: 8px;
  line-height: 1.5;
}

/* Carousel Outer Track */
.carousel-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.marquee-track::-webkit-scrollbar {
  display: none;
}

.marquee-content {
  display: flex;
  gap: 12px;
  padding: 0 16px;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.marquee-track.track-1 .marquee-content {
  animation-name: marquee-left-to-right;
}

.marquee-track.track-2 .marquee-content {
  animation-name: marquee-right-to-left;
}

.marquee-track:hover .marquee-content,
.marquee-track:active .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-left-to-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

@keyframes marquee-right-to-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Page Card Item inside Carousel - Pure Black Mockup Cards */
.page-card-item {
  width: 230px;
  height: 325px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1C261E 0%, #0D140F 100%);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-card-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(134, 239, 172, 0.4);
}

@media (max-width: 480px) {
  .page-card-item {
    width: 195px;
    height: 275px;
    border-radius: 16px;
  }
}

/* ==========================================================================
   5. SECTION: EXCLUSIVE BONUSES
   ========================================================================== */
/* ==========================================================================
   5. SECTION: EXCLUSIVE BONUSES (DARK GREEN CONTAINER + CREAM CARDS)
   ========================================================================== */
.bonus-section {
  padding: 16px 12px;
  background-color: var(--white);
}

.bonus-outer-container {
  background: linear-gradient(180deg, #183D27 0%, #10291A 100%);
  border-radius: 28px;
  padding: 32px 16px 24px 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.bonus-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.25;
}

.highlight-green-dark-bg {
  color: #86EFAC;
  display: inline-block;
}

.bonus-section-subtitle {
  text-align: center;
  font-size: 0.84rem;
  color: #A8C9AF;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.45;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.bonus-card {
  background-color: var(--cream-light);
  border: 1px solid #EBE5D3;
  border-radius: 20px;
  padding: 20px 16px 16px 16px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-tag {
  position: absolute;
  top: -12px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Bonus Card Banner Mockup */
.bonus-cover-wrapper {
  margin: 10px 0 14px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-cover-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.bonus-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.bonus-desc {
  font-size: 0.83rem;
  color: #4A5B4E;
  margin-bottom: 12px;
  line-height: 1.45;
}

.bonus-price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.price-strikethrough {
  font-size: 0.8rem;
  color: #88998C;
  text-decoration: line-through;
}

.bonus-free-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-primary);
  background-color: var(--green-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

/* Bonus Summary Card - Reference Image Replica in Green Palette */
.bonus-summary-card {
  background-color: var(--cream-light);
  border: 1px solid #EBE5D3;
  border-radius: 20px;
  padding: 24px 16px 20px 16px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-top: 16px;
}

.summary-top-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.summary-card-headline {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-top: 10px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  text-align: left;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(24, 61, 39, 0.15);
}

.summary-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.summary-item-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #88998C;
  text-decoration: line-through;
  white-space: nowrap;
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  margin-bottom: 14px;
}

.summary-total-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.3px;
}

.summary-total-box {
  background-color: var(--white);
  border: 2px solid var(--green-dark);
  border-radius: 10px;
  padding: 4px 14px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.summary-dashed-divider {
  border-top: 1.5px dashed rgba(24, 61, 39, 0.2);
  margin: 14px 0;
}

.summary-final-offer {
  margin-top: 8px;
}

.summary-final-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.summary-final-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1.1;
}

/* ==========================================================================
   6. SECTION: PRICING PLANS (#planos)
   ========================================================================== */
.plans-section {
  background-color: var(--cream-light);
  padding: 36px 16px;
  scroll-margin-top: calc(var(--header-height) - 10px);
}

.plans-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.plans-eyebrow {
  color: var(--green-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.plans-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.plans-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.plans-timer-header {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.plans-timer-icon {
  width: 18px;
  height: 18px;
  color: var(--green-primary);
  flex-shrink: 0;
  animation: timerPulse 2s infinite ease-in-out;
}

.plans-timer-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timer-block {
  width: 78px;
  height: 82px;
  background: linear-gradient(180deg, #183D27 0%, #0F2618 100%);
  border: 1.5px solid rgba(134, 239, 172, 0.4);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  gap: 2px;
}

.timer-number {
  color: #86EFAC;
  font-family: 'Poppins', monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.timer-unit {
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.timer-colon {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 12px;
}

@media (max-width: 380px) {
  .timer-block {
    width: 66px;
    height: 72px;
    border-radius: 12px;
  }
  .timer-number {
    font-size: 1.45rem;
  }
  .timer-unit {
    font-size: 0.55rem;
  }
  .plans-title {
    font-size: 1.3rem;
  }
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

/* Custom Plano Básico Card - Reference Image Replica */
.plan-card.plan-basic-custom {
  background-color: var(--cream-light);
  border: 1.5px solid #D5CEBD;
  border-radius: 28px;
  padding: 28px 20px 20px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plan-header-block .plan-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
}

.plan-subtitle {
  font-size: 0.84rem;
  color: #4A5B4E;
  margin: 0;
  line-height: 1.35;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(24, 61, 39, 0.12);
  margin: 10px 0;
}

.plan-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plan-access-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.8px;
}

.plan-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.plan-price-main .price-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.plan-price-main .price-type {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

.plan-items-list.custom {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.plan-items-list.custom .plan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.35;
}

.plan-items-list.custom .plan-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-items-list.custom .plan-item.check {
  color: var(--text-dark);
  font-weight: 600;
}

.plan-items-list.custom .plan-item.check svg {
  fill: var(--green-primary);
}

.plan-items-list.custom .plan-item.cross {
  color: #99AA9C;
  text-decoration: line-through;
  font-weight: 500;
}

.plan-items-list.custom .plan-item.cross svg {
  fill: #A0B5A5;
}

.btn-plan-custom-basic {
  width: 100%;
  background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-primary) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 15px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--green-dark);
  box-shadow: 0 4px 14px rgba(24, 61, 39, 0.2);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-plan-custom-basic:active {
  transform: scale(0.97);
}

.plan-security-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  color: #4A5B4E;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-security-footer svg {
  width: 15px;
  height: 15px;
  fill: #4A5B4E;
}

/* Custom Plano Completo Card - Reference Image Replica */
.plan-card.plan-complete-custom {
  background-color: var(--white);
  border: 2.5px solid var(--green-dark);
  border-radius: 28px;
  padding: 32px 20px 20px 20px;
  box-shadow: 0 12px 32px rgba(24, 61, 39, 0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-card.plan-complete-custom .plan-featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  border: 2px solid var(--green-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.price-value.highlight-complete {
  color: var(--green-primary);
}

/* Product Mockup Container */
.plan-mockup-placeholder {
  width: 100%;
  margin: 2px 0 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.complete-mockup-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  object-fit: contain;
}

.mockup-fallback-box {
  width: 100%;
  height: 180px;
  background: linear-gradient(160deg, #1C261E 0%, #0D140F 100%);
  border: 1.5px dashed rgba(134, 239, 172, 0.4);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #86EFAC;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 16px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mockup-fallback-box svg {
  width: 32px;
  height: 32px;
  fill: #86EFAC;
  opacity: 0.8;
}

/* Exclusive Bonus Dashed Container */
.bonus-dashed-box {
  width: 100%;
  background-color: #F4F9F4;
  border: 2px dashed var(--green-dark);
  border-radius: 18px;
  padding: 16px 12px;
  margin: 16px 0 20px 0;
}

.bonus-dashed-header {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.bonus-pill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-pill-card {
  background-color: var(--white);
  border: 2px solid var(--green-dark);
  border-radius: 9999px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.bonus-pill-icon {
  font-size: 1.05rem;
  flex-shrink: 0;
}

.bonus-pill-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
}

/* Complete Plan CTA Button */
.btn-plan-custom-complete {
  width: 100%;
  background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-primary) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--green-dark);
  box-shadow: 0 4px 16px rgba(24, 61, 39, 0.25);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-plan-custom-complete:active {
  transform: scale(0.97);
}

.plan-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E5E0D0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid var(--green-primary);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAF4 100%);
}

.plan-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  white-space: nowrap;
}

.plan-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
  text-align: center;
}

.plan-price-wrapper {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--green-light);
}

.plan-old-price {
  font-size: 0.84rem;
  color: #88998C;
  text-decoration: line-through;
}

.plan-current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin: 4px 0;
}

.plan-price-subtitle {
  font-size: 0.76rem;
  color: #556658;
  font-weight: 500;
}

.plan-items-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #334438;
}

.plan-item svg {
  width: 18px;
  height: 18px;
  fill: var(--green-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-item.highlight-bonus {
  font-weight: 700;
  color: var(--green-dark);
}

.plan-item.highlight-bonus svg {
  fill: var(--green-medium);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 12px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}

.btn-plan-basic {
  background-color: var(--green-light);
  color: var(--green-dark);
  border: 1px solid var(--green-medium);
}

.btn-plan-complete {
  background: linear-gradient(135deg, #4A8C50 0%, #2A6030 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(42, 96, 48, 0.35);
}

.btn-plan:active {
  transform: scale(0.97);
}

/* ==========================================================================
   7. PROMOTIONAL UPSELL POPUP MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 26, 16, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-card {
  background-color: var(--white);
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 28px 20px 24px 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2.5px solid var(--green-dark);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background-color: var(--cream-light);
  border: 1px solid #E0DACB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: #556658;
}

.modal-badge {
  display: inline-block;
  background-color: #E53935;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.modal-text {
  font-size: 0.84rem;
  color: #445548;
  line-height: 1.45;
  margin-bottom: 16px;
}

.modal-price-box {
  background-color: var(--cream-light);
  border: 1.5px solid #EBE5D3;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}

.modal-old-price {
  font-size: 0.85rem;
  color: #88998C;
  text-decoration: line-through;
}

.modal-promo-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
}

.modal-items-list {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.modal-item {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-item svg {
  width: 16px;
  height: 16px;
  fill: var(--green-primary);
}

.modal-primary-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-primary) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  padding: 16px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--green-dark);
  box-shadow: 0 6px 18px rgba(24, 61, 39, 0.25);
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.modal-primary-btn:active {
  transform: scale(0.97);
}

.modal-secondary-link {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: #556658;
  text-decoration: underline;
  padding: 6px;
  font-weight: 600;
  line-height: 1.35;
}

/* ==========================================================================
   8. GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
  text-align: center;
  padding: 44px 20px;
  background-color: var(--cream-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(24, 61, 39, 0.1);
}

.guarantee-seal-placeholder {
  width: 100%;
  max-width: 280px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-seal-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.guarantee-seal-fallback {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #183D27 0%, #0F2618 100%);
  border: 2px solid rgba(134, 239, 172, 0.4);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #86EFAC;
  padding: 20px;
  text-align: center;
}

.guarantee-seal-fallback svg {
  width: 44px;
  height: 44px;
  fill: #86EFAC;
}

.seal-fallback-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.seal-fallback-sub {
  font-size: 0.62rem;
  color: #A8C9AF;
  font-weight: 600;
  line-height: 1.2;
}

.guarantee-eyebrow {
  color: var(--green-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guarantee-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 480px;
}

.guarantee-main-text {
  font-size: 0.96rem;
  color: #4A5B4E;
  line-height: 1.55;
  max-width: 460px;
  margin: 0 auto;
  font-weight: 500;
}

/* ==========================================================================
   9. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--white);
  padding: 36px 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid #E5E0D0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--cream-light);
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--green-medium);
  background-color: var(--white);
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  line-height: 1.35;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  fill: var(--green-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 16px 16px 16px;
  transition: max-height 0.35s cubic-bezier(1, 0, 1, 0), padding 0.35s ease;
}

.faq-answer p {
  font-size: 0.82rem;
  color: #445548;
  line-height: 1.55;
  border-top: 1px solid var(--green-light);
  padding-top: 12px;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 32px 16px 24px 16px;
  text-align: center;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 6px;
  line-height: 1.3;
}

.footer-subtext {
  font-size: 0.75rem;
  color: #A0B5A5;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--white);
  text-decoration: underline;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.72rem;
  color: #889D8D;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.66rem;
  color: #6C8271;
  line-height: 1.45;
  max-width: 380px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

/* Reduced Motion preference */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
