/* ==========================================================================
   MENTE RESILIENTE - GUIA PRÁTICO 7 DIAS
   DESIGN SYSTEM & MASTER STYLESHEET
   ========================================================================== */

:root {
  /* Color Palette - Deep Cyber & Obsidian Luxury */
  --bg-primary: #060911;
  --bg-secondary: #0b111e;
  --bg-tertiary: #101728;
  --bg-card: rgba(14, 22, 38, 0.72);
  --bg-card-hover: rgba(20, 31, 54, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.55);

  /* Accent Colors */
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-gold: #ffc837;
  --accent-gold-dark: #ff8008;
  --accent-emerald: #10b981;
  --accent-coral: #ff5e62;
  --accent-purple: #8a2be2;

  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-gold: linear-gradient(135deg, #ffd200 0%, #f7971e 100%);
  --grad-gold-text: linear-gradient(135deg, #fff275 0%, #ffc837 50%, #f7971e 100%);
  --grad-card-border: linear-gradient(135deg, rgba(0, 242, 254, 0.4) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(79, 172, 254, 0.2) 100%);
  --grad-gold-border: linear-gradient(135deg, rgba(255, 210, 0, 0.6) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(247, 151, 30, 0.4) 100%);
  --grad-surface: linear-gradient(180deg, rgba(16, 25, 46, 0.8) 0%, rgba(10, 16, 30, 0.95) 100%);
  --grad-dark-overlay: linear-gradient(180deg, rgba(6, 9, 17, 0) 0%, rgba(6, 9, 17, 0.9) 100%);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-highlight: #e2e8f0;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 242, 254, 0.5);
  --shadow-glow-cyan: 0 0 25px rgba(0, 242, 254, 0.3), 0 0 50px rgba(79, 172, 254, 0.15);
  --shadow-glow-gold: 0 0 25px rgba(255, 200, 55, 0.35), 0 0 60px rgba(255, 128, 8, 0.15);
  --shadow-card: 0 20px 45px -15px rgba(0, 0, 0, 0.7);

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

  /* Spacing & Sizing */
  --container-max: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Particle Background Canvas */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Ambient Radial Glow Overlays */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.05) 45%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: orbMove1 18s ease-in-out infinite alternate;
}

.ambient-glow-2 {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 200, 55, 0.1) 0%, rgba(255, 128, 8, 0.03) 50%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: orbMove2 22s ease-in-out infinite alternate;
}

.ambient-glow-3 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(138, 43, 226, 0.08) 50%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section general */
section {
  position: relative;
  padding: 90px 0;
  z-index: 1;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient-cyan {
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--accent-cyan);
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.section-tag.gold {
  background: rgba(255, 200, 55, 0.08);
  border-color: rgba(255, 200, 55, 0.35);
  color: var(--accent-gold);
}

.section-tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: beaconPulse 2s infinite;
}

.section-tag.gold .section-tag-pulse {
  background: var(--accent-gold);
}

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

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffc837 0%, #ff8008 100%);
  color: #0b0f19;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.4), 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: pulseGold 3s infinite ease-in-out;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.7), 0 15px 35px rgba(0, 0, 0, 0.6);
  color: #050811;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

.btn-cyan {
  background: var(--grad-cyan-blue);
  color: #060911;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4), 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: pulseGlow 3s infinite ease-in-out;
}

.btn-cyan:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.7), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.25rem;
  line-height: 1;
}

.btn:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-subtext {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  opacity: 0.85;
  margin-top: 2px;
  letter-spacing: normal;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & TIMER
   ========================================================================== */

.top-bar {
  background: linear-gradient(90deg, #090e1a 0%, #151d30 50%, #090e1a 100%);
  border-bottom: 1px solid rgba(0, 242, 254, 0.25);
  padding: 10px 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
}

.top-bar-badge {
  background: rgba(255, 200, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.timer-unit {
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--accent-cyan);
  padding: 2px 7px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 60px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
  width: 100%;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-highlight);
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 242, 254, 0.35);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 440px;
}

.hero-proof-pills {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.proof-stars {
  color: #ffb703;
  letter-spacing: 2px;
}

/* Hero 3D Mockup Stage */
.hero-mockup-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  animation: floatSlow 6s ease-in-out infinite;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 242, 254, 0.25);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: block;
}

.mockup-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--grad-surface);
  border: 1px solid rgba(255, 200, 55, 0.4);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 200, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  animation: floatGentle 4s ease-in-out infinite;
  z-index: 2;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 200, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.badge-text-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-text-secondary {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* ==========================================================================
   PROBLEM & AGITATION SECTION (O CAOS VS A LEVEZA)
   ========================================================================== */

.problem-section {
  background: linear-gradient(180deg, rgba(11, 17, 30, 0.8) 0%, rgba(7, 10, 19, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.quote-card-luxury {
  background: linear-gradient(135deg, rgba(255, 200, 55, 0.08) 0%, rgba(16, 24, 42, 0.8) 50%, rgba(255, 128, 8, 0.05) 100%);
  border: 1px solid rgba(255, 200, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 35px 40px;
  margin: 0 auto 50px;
  max-width: 860px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 200, 55, 0.1);
  backdrop-filter: blur(16px);
}

.quote-symbol {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.5;
  margin-bottom: -15px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.quote-subtext {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* Comparison Matrix (Antes vs Depois) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(14px);
}

.comparison-card.before {
  background: rgba(30, 15, 20, 0.6);
  border: 1px solid rgba(255, 94, 98, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.comparison-card.after {
  background: rgba(10, 35, 30, 0.6);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.15);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.comparison-card.before .comparison-badge {
  background: rgba(255, 94, 98, 0.2);
  color: #ff7b7f;
  border: 1px solid rgba(255, 94, 98, 0.4);
}

.comparison-card.after .comparison-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.comparison-card-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.comparison-card.before .comparison-item {
  color: #cbd5e1;
}

.comparison-card.after .comparison-item {
  color: #f1f5f9;
}

.comp-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

.comparison-card.before .comp-icon {
  background: rgba(255, 94, 98, 0.2);
  color: #ff5e62;
}

.comparison-card.after .comp-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* ==========================================================================
   THE 4 PILLARS SECTION (OS 4 PILARES DA PRODUTIVIDADE LEVE)
   ========================================================================== */

.pillars-section {
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: var(--shadow-glow-cyan), var(--shadow-card);
}

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

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.05) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(79, 172, 254, 0.15) 100%);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-num {
  color: rgba(0, 242, 254, 0.25);
}

.pillar-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
}

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

/* ==========================================================================
   7-DAY JOURNEY ROADMAP (A JORNADA DIA A DIA)
   ========================================================================== */

.journey-section {
  background: linear-gradient(180deg, rgba(7, 10, 19, 0.95) 0%, rgba(12, 18, 32, 0.85) 100%);
  position: relative;
}

.journey-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-gold) 50%, var(--accent-cyan) 100%);
  opacity: 0.3;
}

.day-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  margin-left: 0;
}

.day-card:hover {
  transform: translateX(8px);
  border-color: rgba(0, 242, 254, 0.35);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.day-badge {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #090e1a 0%, #151e33 100%);
  border: 2px solid var(--accent-cyan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  z-index: 2;
}

.day-badge-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
}

.day-card:nth-child(4) .day-badge,
.day-card:nth-child(7) .day-badge {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(255, 200, 55, 0.3);
}

.day-content {
  flex: 1;
}

.day-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

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

/* ==========================================================================
   ABOUT THE AUTHOR (SOBRE O AUTOR)
   ========================================================================== */

.author-section {
  position: relative;
}

.author-card-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 25, 46, 0.85) 0%, rgba(10, 15, 28, 0.95) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-card), 0 0 35px rgba(0, 242, 254, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

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

.author-photo-box {
  position: relative;
}

.author-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.2);
  display: block;
}

.author-experience-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #090e1a;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.author-name {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.author-role {
  color: var(--accent-cyan);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.author-stats-row {
  display: flex;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
}

.stat-item-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   TESTIMONIALS (DEPOIMENTOS & PROVA SOCIAL)
   ========================================================================== */

.testimonials-section {
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.9) 0%, rgba(6, 9, 17, 1) 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 25px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 55, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 200, 55, 0.1);
}

.testi-stars {
  color: #ffb703;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 1rem;
  color: #f1f5f9;
  line-height: 1.6;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #060911;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.testi-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.testi-tag {
  font-size: 0.75rem;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   GUARANTEE SECTION (SUA ROTINA, SUA GARANTIA: SEM RISCO!)
   ========================================================================== */

.guarantee-section {
  position: relative;
}

.guarantee-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(20, 28, 48, 0.8) 0%, rgba(10, 15, 26, 0.95) 100%);
  border: 1px solid rgba(255, 200, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 200, 55, 0.15);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}

.guarantee-seal-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 200, 55, 0.3));
  animation: floatGentle 5s ease-in-out infinite;
}

.guarantee-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.guarantee-text {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.guarantee-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-highlight);
}

.guarantee-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   OFFER & PRICING SECTION (GARANTA SEU ACESSO E COMECE HOJE)
   ========================================================================== */

.offer-section {
  position: relative;
  padding: 100px 0 120px;
}

.pricing-box {
  max-width: 650px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20, 30, 52, 0.95) 0%, rgba(10, 16, 30, 0.98) 100%);
  border: 2px solid rgba(0, 242, 254, 0.5);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 242, 254, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
  text-align: center;
}

.pricing-floating-tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd200 0%, #ff8008 100%);
  color: #0b0f19;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
  white-space: nowrap;
}

.pricing-header-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.pricing-header-sub {
  color: var(--accent-cyan);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pricing-stack-list {
  background: rgba(8, 13, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-highlight);
}

.stack-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stack-item-val {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-value-area {
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-strike {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 6px;
}

.price-installment {
  font-size: 1.05rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.pricing-cta-wrap {
  margin-bottom: 20px;
}

.pricing-cta-btn {
  width: 100%;
  padding: 22px 30px;
  font-size: 1.25rem;
}

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

.security-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.security-item svg {
  color: var(--accent-emerald);
}

/* ==========================================================================
   FAQ SECTION (PERGUNTAS FREQUENTES)
   ========================================================================== */

.faq-section {
  background: linear-gradient(180deg, rgba(6, 9, 17, 0.95) 0%, rgba(10, 15, 26, 1) 100%);
  position: relative;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.1);
}

.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  text-align: left;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--accent-cyan);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(0, 242, 254, 0.2);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  padding: 0 26px 22px 26px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #04060b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-slogan {
  font-size: 0.88rem;
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #475569;
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.78rem;
  color: #334155;
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 14, 26, 0.92);
  border-top: 1px solid rgba(0, 242, 254, 0.35);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sticky-bar-price {
  display: flex;
  flex-direction: column;
}

.sticky-bar-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.sticky-bar-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.sticky-bar-btn {
  padding: 12px 22px;
  font-size: 0.92rem;
}

/* ==========================================================================
   LIVE PURCHASE TOAST NOTIFICATION
   ========================================================================== */

.live-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 22, 38, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 242, 254, 0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 340px;
}

.live-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.82rem;
  line-height: 1.35;
}

.toast-title {
  font-weight: 700;
  color: #ffffff;
}

.toast-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-highlights {
    align-items: center;
  }

  .hero-proof-pills {
    justify-content: center;
  }

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

  .author-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .author-stats-row {
    justify-content: center;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
}

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

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

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

  .author-card-wrap {
    padding: 30px 20px;
  }

  .pricing-box {
    padding: 40px 20px;
  }

  .guarantee-card {
    padding: 30px 20px;
  }

  .quote-card-luxury {
    padding: 25px 20px;
  }

  .sticky-mobile-bar {
    display: flex;
  }

  .live-toast {
    left: 15px;
    right: 15px;
    bottom: 80px;
    max-width: none;
  }
}
