/* ==========================================================================
   PROGRAMA 28 DIAS — JORNADA INTEGRATIVA
   Design System & Master Stylesheet
   Created with ui-ux-pro-max + frontend-design standards
   ========================================================================== */

:root {
  /* Brand Palette - Luxury Organic Wellness */
  --primary-darkest: #071a15;
  --primary-dark: #0b2a22;
  --primary: #154336;
  --primary-light: #236352;
  --primary-surface: #edf5f2;
  --primary-subtle: rgba(21, 67, 54, 0.08);

  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --accent-gold-light: #fffbeb;
  --accent-gold-border: #fcd34d;
  --accent-glow: rgba(217, 119, 6, 0.28);

  --sage: #4f7e6e;
  --sage-light: #d8e8e1;

  --success: #16a34a;
  --success-light: #f0fdf4;
  --danger: #dc2626;
  --danger-light: #fef2f2;

  /* Neutrals & Surfaces */
  --bg-page: #f8faf9;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card-alt: #f3f7f5;
  --bg-dark-section: #0b2a22;

  --text-main: #10231d;
  --text-secondary: #3b5249;
  --text-muted: #677d74;
  --text-inverse: #ffffff;
  --text-inverse-muted: #c2d6cf;

  --border-light: #e1ebe7;
  --border-card: rgba(21, 67, 54, 0.12);

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-subtle: 0 4px 14px rgba(11, 42, 34, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(11, 42, 34, 0.08), 0 2px 6px -2px rgba(11, 42, 34, 0.04);
  --shadow-hover: 0 20px 40px -10px rgba(11, 42, 34, 0.15), 0 6px 12px -4px rgba(11, 42, 34, 0.06);
  --shadow-cta: 0 10px 28px rgba(217, 119, 6, 0.35);
  --shadow-cta-hover: 0 14px 34px rgba(217, 119, 6, 0.45);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* UTILITY CLASSES & CONTAINERS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

.container-small {
  max-width: 680px;
}

.section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 992px) {
  .section {
    padding: 110px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-surface);
  color: var(--primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-tag.tag-gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-darkest);
  line-height: 1.25;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gold {
  color: var(--accent-gold);
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: rgba(217, 119, 6, 0.22);
  z-index: -1;
  border-radius: 4px;
}

/* ==========================================================================
   TOP BAR TIMER (EMERGENCY/SCARCITY)
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #071a15 0%, #154336 50%, #071a15 100%);
  color: #ffffff;
  padding: 10px 16px;
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.top-notice-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.top-notice-tag {
  background: var(--accent-gold);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.725rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #fef08a;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 10px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(254, 240, 138, 0.3);
}

.top-countdown span {
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   HERO NAV / LOGO
   ========================================================================== */
.hero-nav {
  padding: 0 0 32px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(21, 67, 54, 0.28);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-darkest);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-name em {
  font-style: normal;
  color: var(--primary-light);
  font-weight: 600;
}

.brand-slogan {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 50px 0 80px;
  background-color: #f8faf9;
  background-image:
    radial-gradient(at 0% 0%, #edf5f2 0px, transparent 50%),
    radial-gradient(at 100% 0%, #d8e8e1 0px, transparent 50%),
    radial-gradient(at 100% 100%, #fffbeb 0px, transparent 50%),
    radial-gradient(at 0% 100%, #e1ebe7 0px, transparent 50%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.10) 0%, transparent 70%);
  top: -200px;
  right: -140px;
}

.hero::after {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(35, 99, 82, 0.12) 0%, transparent 70%);
  bottom: -220px;
  left: -160px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero {
    padding: 50px 0 100px;
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

@media (min-width: 992px) {
  .hero-grid {
    display: block;
  }
  .hero-content {
    max-width: 65%;
    position: relative;
    z-index: 2;
  }
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stars-group {
  display: inline-flex;
  color: #f59e0b;
  gap: 2px;
  font-size: 0.95rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  color: var(--primary-darkest);
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gold-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--accent-gold);
  white-space: nowrap;
}

.text-gold-underline::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 5px;
  width: 104%;
  height: 10px;
  background: rgba(217, 119, 6, 0.20);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-info-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 34px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-content strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-darkest);
}

.card-content span {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-cta-note i {
  color: var(--primary);
  font-size: 1rem;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-rating-badge,
.hero-title,
.hero-subtitle,
.hero-info-cards,
.hero-cta-group,
.hero-trust-badges {
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title { animation-delay: 0.06s; }
.hero-subtitle { animation-delay: 0.12s; }
.hero-info-cards { animation-delay: 0.18s; }
.hero-cta-group { animation-delay: 0.24s; }
.hero-trust-badges { animation-delay: 0.30s; }

@keyframes ctaGlowPulse {
  0%, 100% { box-shadow: var(--shadow-cta); }
  50% { box-shadow: 0 14px 40px rgba(217, 119, 6, 0.52); }
}

.hero-cta-group .btn-primary {
  animation: ctaGlowPulse 2.6s ease-in-out 1.2s infinite;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-cta);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
}

@media (min-width: 576px) {
  .btn-primary {
    width: auto;
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: btnShimmer 4s infinite ease-in-out;
}

@keyframes btnShimmer {
  0% { left: -60%; }
  35%, 100% { left: 140%; }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cta-hover);
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: 1.25rem;
  padding: 20px 42px;
}

.btn-full {
  width: 100%;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge i {
  color: var(--primary);
  font-size: 1.15rem;
}

/* HERO VISUAL / MOCKUP */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-visual {
    position: absolute;
    top: 50%;
    right: -12%;
    transform: translateY(-50%);
    width: 60%;
    justify-content: flex-end;
    pointer-events: none;
  }
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

@media (min-width: 992px) {
  .mockup-wrapper {
    max-width: 100%;
  }
}

.mockup-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: none;
  transition: transform var(--transition-smooth);
  opacity: 0.9;
}

.mockup-wrapper:hover .mockup-img {
  transform: scale(1.02);
}


.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatAnim 6s ease-in-out infinite;
}

.badge-top-right {
  top: -15px;
  right: -15px;
}

.badge-bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: -3s;
}

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

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-darkest);
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INFINITE MARQUEE TICKER
   ========================================================================== */
.marquee-container {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-inverse-muted);
  white-space: nowrap;
}

.marquee-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   PROBLEM SECTION: A RAIZ DA INFLAMAÇÃO
   ========================================================================== */
.problem-section {
  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}

.problem-highlight-box {
  background: var(--primary-surface);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

.problem-highlight-box p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.6;
}

.symptoms-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .symptoms-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.symptom-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.symptom-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.symptom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--danger-light);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.symptom-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-darkest);
  margin-bottom: 6px;
}

.symptom-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   THE 5 PILLARS (OS 5 PILARES)
   ========================================================================== */
.pillars-section {
  background: var(--bg-page);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .pillars-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage-light);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-darkest);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SCHEDULE / AS 4 SEMANAS DA JORNADA
   ========================================================================== */
.schedule-section {
  background: #ffffff;
}

.weeks-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.week-block {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .week-block {
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
  }
}

.week-block:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
  background: #ffffff;
}

.week-badge-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.week-number {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.week-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-darkest);
  line-height: 1.25;
}

.week-days {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-surface);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  width: fit-content;
}

.week-content-col {
  border-left: 2px solid var(--border-light);
  padding-left: 0;
}

@media (min-width: 992px) {
  .week-content-col {
    padding-left: 32px;
  }
}

.week-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.week-habits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .week-habits-list {
    grid-template-columns: 1fr 1fr;
  }
}

.week-habit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.week-habit-item i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   COMPARISON TABLE (ANTES VS DEPOIS / TRADICIONAL VS MÉTODO)
   ========================================================================== */
.comparison-section {
  background: var(--bg-page);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.comp-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.comp-card-bad {
  background: #ffffff;
  border: 1px solid #fecaca;
  box-shadow: var(--shadow-subtle);
}

.comp-card-good {
  background: linear-gradient(145deg, #0b2a22 0%, #154336 100%);
  color: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: var(--shadow-hover);
  position: relative;
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.comp-card-good .comp-header {
  border-color: rgba(255, 255, 255, 0.15);
}

.comp-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.comp-icon-bad {
  background: var(--danger-light);
  color: var(--danger);
}

.comp-icon-good {
  background: rgba(217, 119, 6, 0.25);
  color: #fbbf24;
  border: 1px solid var(--accent-gold);
}

.comp-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.comp-card-bad .comp-title {
  color: var(--danger);
}

.comp-card-good .comp-title {
  color: #ffffff;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comp-item i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-card-bad .comp-item i {
  color: var(--danger);
}

.comp-card-good .comp-item i {
  color: #4ade80;
}

.comp-card-good .comp-item {
  color: var(--text-inverse-muted);
}

.comp-card-good .comp-item strong {
  color: #ffffff;
}

/* ==========================================================================
   FOR WHOM (PARA QUEM É / NÃO É)
   ========================================================================== */
.target-section {
  background: #ffffff;
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.target-box {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border-light);
}

.target-box-yes {
  border-top: 4px solid var(--success);
}

.target-box-no {
  border-top: 4px solid var(--danger);
}

.target-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.target-box-yes .target-heading {
  color: var(--primary-darkest);
}

.target-box-no .target-heading {
  color: var(--text-muted);
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.target-item i {
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.target-box-yes .target-item i {
  color: var(--success);
}

.target-box-no .target-item i {
  color: var(--danger);
}

/* ==========================================================================
   TESTIMONIALS (PROVA SOCIAL)
   ========================================================================== */
.testimonials-section {
  background: radial-gradient(circle at 50% 10%, rgba(21, 67, 54, 0.05) 0%, transparent 60%), var(--bg-page);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage-light);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(21, 67, 54, 0.15);
  position: absolute;
  top: -24px;
  left: -8px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid var(--sage-light);
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-darkest);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   WHAT IS INCLUDED + 3 SUPER BONUSES
   ========================================================================== */
.bonuses-section {
  background: #ffffff;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.bonus-pill {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.bonus-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.bonus-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-darkest);
  margin-bottom: 10px;
}

.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bonus-value {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-light);
  padding-top: 12px;
}

.bonus-value del {
  color: var(--danger);
  font-weight: 600;
}

/* ==========================================================================
   OFFER SECTION / CHECKOUT SPECIAL
   ========================================================================== */
.offer-section {
  background: linear-gradient(180deg, #071a15 0%, #0b2a22 100%);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.offer-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(217, 119, 6, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .offer-card {
    padding: 50px 48px;
  }
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .offer-title {
    font-size: 2.8rem;
  }
}

.offer-subtitle {
  font-size: 1.05rem;
  color: var(--text-inverse-muted);
  margin-bottom: 30px;
}

.offer-inclusions {
  list-style: none;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #ffffff;
}

.offer-inclusion-item i {
  color: #4ade80;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-box {
  margin-bottom: 28px;
}

.old-price {
  font-size: 1.1rem;
  color: var(--text-inverse-muted);
  margin-bottom: 4px;
}

.old-price del {
  color: #f87171;
  font-weight: 700;
}

.current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #fbbf24;
  font-family: var(--font-heading);
}

.price-period {
  font-size: 1rem;
  color: var(--text-inverse-muted);
}

.installments-text {
  font-size: 0.95rem;
  color: #fef08a;
  font-weight: 600;
  margin-top: 6px;
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-inverse-muted);
}

.sec-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sec-badge-item i {
  color: #4ade80;
  font-size: 1rem;
}

/* ==========================================================================
   GUARANTEE SECTION (7 DIAS BLINDADA)
   ========================================================================== */
.guarantee-section {
  background: #ffffff;
}

.guarantee-box {
  background: var(--bg-page);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .guarantee-box {
    grid-template-columns: 180px 1fr;
    padding: 48px 40px;
    gap: 40px;
  }
}

.guarantee-seal {
  display: flex;
  justify-content: center;
}

.seal-circle {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #154336 0%, #0b2a22 100%);
  color: #fbbf24;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid #fbbf24;
  box-shadow: 0 10px 24px rgba(11, 42, 34, 0.2);
  text-align: center;
  padding: 10px;
}

.seal-circle i {
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.seal-circle strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1;
}

.seal-circle span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #fbbf24;
  font-weight: 800;
}

.guarantee-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-darkest);
  margin-bottom: 12px;
}

.guarantee-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT THE AUTHOR (CLAUDIA LIMMA)
   ========================================================================== */
.author-section {
  background: var(--bg-page);
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .author-grid {
    grid-template-columns: 380px 1fr;
    gap: 60px;
  }
}

.author-image-wrapper {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.author-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 4px solid #ffffff;
}

.author-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-darkest);
  margin-bottom: 8px;
}

.author-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.author-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author-quote-box {
  background: #ffffff;
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 24px;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-subtle);
}

/* ==========================================================================
   FAQ SECTION (ACORDEON INTERATIVO)
   ========================================================================== */
.faq-section {
  background: #ffffff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-darkest);
  cursor: pointer;
}

.faq-icon-arrow {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-out, padding 300ms ease-out;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
  max-height: 500px;
}

/* ==========================================================================
   FOOTER & LEGAL
   ========================================================================== */
.footer {
  background: #071a15;
  color: var(--text-inverse-muted);
  padding: 60px 0 100px;
  font-size: 0.85rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.footer-brand strong {
  font-size: 1.2rem;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: var(--radius-md);
  color: #94a3b8;
  font-size: 0.775rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #fbbf24;
}

.copyright {
  color: #64748b;
  font-size: 0.75rem;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 42, 34, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(217, 119, 6, 0.4);
  padding: 12px 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}

.sticky-cta-label {
  font-size: 0.7rem;
  color: #ffffff;
  text-transform: uppercase;
}

.sticky-cta-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--accent-gold);
  color: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}
