/* ==========================================
   BIBLIOTECA PREMIUM DE MAPAS MENTAIS DE DIREITO
   Design System & Premium Aesthetics
   ========================================== */

:root {
  /* Color Palette */
  --navy-900: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  --navy-950: #090D16;
  
  --gold-500: #D4AF37;
  --gold-400: #F3E5AB;
  --gold-600: #AA771C;
  --gold-gradient: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #996B10 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F5D77F 0%, #E5C158 50%, #B8851B 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  
  --blue-light-bg: #F0F9FF;
  --blue-light-border: #BAE6FD;
  --blue-accent: #0284C7;
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', var(--font-sans);
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 30px 60px -20px rgba(15, 23, 42, 0.2);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.35);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

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

/* Typography Utilities */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge.badge-gold {
  background: rgba(212, 175, 55, 0.12);
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-badge.badge-navy {
  background: rgba(15, 23, 42, 0.06);
  color: var(--navy-900);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto 48px auto;
}

/* Primary Gold Button */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  padding: 20px 42px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-gold::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.6s;
}

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

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
  background: var(--gold-gradient-hover);
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Floating Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 50% 20%, #1E293B 0%, #0F172A 70%, #090D16 100%);
  color: var(--white);
  padding: 32px 0 64px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 0 40px 0;
  }
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-yellow {
  color: #F59E0B;
  background: none;
  -webkit-text-fill-color: #F59E0B;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-300);
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-subheadline {
    font-size: 0.98rem;
    margin-bottom: 16px;
  }
  .section-badge {
    margin-bottom: 12px;
  }
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 0.95rem;
}

.stars {
  color: #F59E0B;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.proof-bullets {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Visual & Mockup Stage */
.hero-mockup-container {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  margin-bottom: 32px;
  width: 100%;
}

.hero-mockup-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-mockup-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-mockup-container {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .hero-mockup-wrapper {
    max-width: 100%;
    padding: 0;
  }
  .hero-mockup-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}

/* 4 Trust Badges Grid on left side / floating around */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-badge-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.trust-badge-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  background: rgba(30, 41, 59, 0.9);
}

.trust-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.trust-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Floating Mindmap Node Tags around Mockup */
.floating-node {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.node-1 { top: 12%; left: -30px; animation-delay: 0s; }
.node-2 { top: 55%; left: -40px; animation-delay: 1s; }
.node-3 { top: 18%; right: -30px; animation-delay: 2s; }
.node-4 { top: 62%; right: -35px; animation-delay: 1.5s; }

@media (max-width: 1100px) {
  .floating-node { display: none; }
}

/* ==========================================
   PRÉVIA DO MATERIAL (Carrossel Horizontal de Atividades)
   ========================================== */
.previa-section {
  background: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 80px 0;
}

.previa-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 32px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.previa-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: previaMarquee 48s linear infinite;
}

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

.previa-card-item {
  width: 340px !important;
  height: auto !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid var(--gray-200) !important;
  background: #FFFFFF !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition: transform 0.3s ease !important;
}

@media (max-width: 768px) {
  .previa-card-item {
    width: 270px !important;
    height: auto !important;
    border-radius: 14px !important;
  }
}

.previa-card-item:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

.previa-card-item img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  background: #FFFFFF !important;
  border-radius: 14px !important;
}

.zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.preview-image-box:hover .zoom-overlay {
  opacity: 1;
}

.zoom-btn {
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-weight: 800;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  box-shadow: var(--shadow-gold);
}

.preview-info {
  padding: 24px 32px;
  background: var(--white);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-200);
}

.preview-info-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
}

.preview-info-meta {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Image Lightbox Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================
   DORES SECTION (Já passou por isso?)
   ========================================== */
.dores-section {
  background: #FFF5F6;
  text-align: center;
  border-top: 1px solid rgba(244, 63, 94, 0.08);
  border-bottom: 1px solid rgba(244, 63, 94, 0.08);
}

.dores-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto 36px auto;
}

.dor-card {
  background: #FFFFFF;
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-radius: 14px;
  padding: 12px 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.04);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 63, 94, 0.08);
  border-color: rgba(225, 29, 72, 0.4);
}

.dor-icon {
  font-size: 1rem;
  font-weight: 800;
  color: #E11D48;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dor-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
}

/* Solution Box */
.solution-box {
  background: var(--blue-light-bg);
  border: 2px dashed var(--blue-accent);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.solution-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.5;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .solution-text {
    font-size: 1.1rem;
  }
}

/* ==========================================
   COMO FUNCIONA
   ========================================== */
.funciona-section {
  background-color: #FAF6ED;
  background-image: 
    linear-gradient(rgba(224, 205, 175, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 205, 175, 0.4) 1px, transparent 1px);
  background-size: 24px 24px;
  text-align: center;
  border-top: 1px solid rgba(224, 205, 175, 0.5);
  border-bottom: 1px solid rgba(224, 205, 175, 0.5);
}

.timeline-wrapper {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--navy-900) 100%);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-wrapper::before {
    left: 28px;
  }
}

.step-card {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  width: 100%;
}

.step-card:last-child {
  margin-bottom: 0;
}

.step-card:nth-child(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .step-card, .step-card:nth-child(odd) {
    flex-direction: row;
    padding-left: 64px;
  }
}

.step-content {
  width: 44%;
  background: #FFFFFF;
  border: 1px solid rgba(224, 205, 175, 0.7);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover .step-content {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .step-content {
    width: 100%;
  }
}

.step-badge-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-icon-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.25rem;
  z-index: 3;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .step-icon-node {
    left: 28px;
  }
}

/* ==========================================
   BIBLIOTECA GRID
   ========================================== */
.biblioteca-section {
  background: var(--gray-50);
  text-align: center;
}

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

@media (max-width: 992px) {
  .disciplinas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.disciplina-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 18px;
}

.disciplina-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.disciplina-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--navy-900);
}

.disciplina-info-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.disciplina-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-600);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ==========================================
   O QUE VOCÊ RECEBE
   ========================================== */
.recebe-section {
  background: var(--white);
}

.recebe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .recebe-layout {
    grid-template-columns: 1fr;
  }
}

.recebe-mockup img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gray-50);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.check-item:hover {
  border-color: var(--gold-500);
  background: var(--white);
  transform: translateX(4px);
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #10B981;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ==========================================
   BÔNUS PREMIUM
   ========================================== */
.bonus-section {
  background: radial-gradient(circle at 50% 10%, #1E293B 0%, #0F172A 80%);
  color: var(--white);
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto 48px auto;
}

@media (max-width: 800px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }
}

.bonus-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
}

.bonus-img-wrapper {
  margin: 16px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.8);
}

.bonus-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img-wrapper img {
  transform: scale(1.03);
}

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

.bonus-num-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-emoji {
  font-size: 2.25rem;
}

.bonus-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.bonus-desc {
  font-size: 0.98rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bonus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.bonus-value-old {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.bonus-value-free {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.bonus-total-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  max-width: 720px;
  margin: 0 auto;
}

.bonus-total-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-400);
}

.bonus-total-text strong {
  color: var(--white);
  font-weight: 800;
}

/* ==========================================
   OFERTA & PRICING
   ========================================== */
.oferta-section {
  background: var(--white);
  text-align: center;
  position: relative;
}

/* Countdown Timer */
.countdown-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-500);
}

.timer-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timer-digits {
  font-family: monospace;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: left;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
  transform: scale(1.03);
}

@media (max-width: 800px) {
  .pricing-card.featured {
    transform: none;
  }
}

.featured-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.plan-price-box {
  margin-bottom: 28px;
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1;
}

.plan-period {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}

.plan-feature-item .check {
  color: #10B981;
  font-weight: 800;
}

.essential-subnote {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray-600);
  text-align: center;
  font-weight: 600;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section {
  background: var(--gray-50);
  text-align: center;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--gold-600);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

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

/* ==========================================
   RODAPÉ / FOOTER
   ========================================== */
.footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 80px 0 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  max-width: 640px;
  margin: 0 auto 32px auto;
  line-height: 1.3;
}

.footer-seals {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray-400);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

/* ==========================================
   DEPOIMENTOS CAROUSEL (Movimento 1.8x contínuo)
   ========================================== */
.depoimentos-section {
  background: #FFFFFF !important;
  color: var(--navy-900) !important;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.depoimentos-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 36px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.depoimentos-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeContinuous 21s linear infinite;
  pointer-events: auto; /* Movimento contínuo 1.4x sem parar ao passar o mouse */
}

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

.depoimento-card {
  width: 320px;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.depoimento-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.depoimento-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-verificado {
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669 !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.depoimento-role {
  font-size: 0.82rem;
  color: #64748B !important;
}

.depoimento-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.depoimento-quote {
  font-size: 0.95rem;
  color: #334155 !important;
  line-height: 1.5;
  font-style: italic;
}

/* Pulsing Glow CTA Button */
.btn-pulse-glow {
  animation: pulseGlowGold 2s infinite ease-in-out;
}

@keyframes pulseGlowGold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7), 0 10px 25px rgba(212, 175, 55, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(212, 175, 55, 0), 0 16px 40px rgba(212, 175, 55, 0.65);
    transform: scale(1.025);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 10px 25px rgba(212, 175, 55, 0.35);
    transform: scale(1);
  }
}

/* ==========================================
   PLANO BÁSICO CARD (Fundo Branco Limpo)
   ========================================== */
.plan-basic-card {
  background: #FFFFFF !important;
  border: 1px solid var(--gray-200) !important;
  border-radius: 24px !important;
  padding: 32px 28px !important;
  color: #0F172A !important;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
}

.plan-basic-card .plan-name {
  color: #0F172A !important;
}

.plan-basic-card .plan-price-box {
  color: #0F172A !important;
}

.plan-basic-card .plan-price {
  color: #0F172A !important;
}

.plan-basic-card .plan-period {
  color: #64748B !important;
}

.plan-basic-card .plan-features span {
  color: #334155 !important;
}

.plan-type-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-top: 6px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.plan-price-old {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.4;
  margin: 14px 0 20px 0;
}

.btn-green-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22C55E;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.35);
  transition: all 0.3s ease;
  margin-top: 24px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}

.btn-green-plan:hover {
  background: #16A34A;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.55);
}

/* UPSELL NOTIFICATION BOX INSIDE BASIC PLAN */
.upsell-box {
  margin-top: 24px;
  background: #F8FAFC;
  border: 1.5px dashed rgba(34, 197, 94, 0.5);
  border-radius: 18px;
  padding: 18px;
  text-align: left;
}

.upsell-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.upsell-badge {
  background: #22C55E;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 20px;
}

.upsell-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: #0F172A;
  letter-spacing: 0.3px;
}

.upsell-text {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
  margin-bottom: 12px;
}

.upsell-highlight {
  color: #16A34A;
  font-weight: 800;
}

.upsell-link {
  color: #16A34A;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.upsell-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* ==========================================
   BIBLIOTECA MULTI-CARROSSEL (3 Fileiras: 2 Horário, 1 Anti-Horário)
   ========================================== */
.biblioteca-section {
  background: #090E17 !important;
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.multi-carousel-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.multi-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.multi-track {
  display: flex;
  gap: 18px;
  width: max-content;
}

.track-clockwise {
  animation: marqueeLeftToRight 28s linear infinite;
}

.track-counter-clockwise {
  animation: marqueeRightToLeft 28s linear infinite;
}

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

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

.multi-card {
  width: 270px !important;
  height: auto !important;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  padding: 8px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.3s ease !important;
}

.multi-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
}

.multi-card img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 10px !important;
  background: #FFFFFF !important;
}

@media (max-width: 768px) {
  .multi-card {
    width: 220px !important;
    padding: 6px !important;
    border-radius: 12px !important;
  }
}

.bonus-tag-free {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 850;
  color: #FBBF24 !important; /* Vibrant yellow/gold */
  background: rgba(245, 158, 11, 0.12) !important; /* Translucent gold background */
  border: 1px solid rgba(245, 158, 11, 0.4) !important; /* Translucent gold border */
  padding: 6px 18px !important;
  border-radius: 30px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

.bonus-val-bottom {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Sticky Red Top Ticker */
.top-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  background-color: #E11D48 !important; /* Vibrant Red */
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 99999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: 20px;
  animation: tickerMarquee 15s linear infinite;
}

.ticker-content span {
  flex-shrink: 0;
}

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

/* Compensate for sticky top bar */
body {
  padding-top: 38px !important;
}

/* Upsell Popup Modal */
.upsell-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.upsell-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.upsell-modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #0F172A;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-modal-overlay.active .upsell-modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #DC2626 !important;
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.modal-close-btn:hover {
  opacity: 0.8;
}

.modal-badge {
  background: rgba(220, 38, 38, 0.08);
  color: #DC2626;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
  color: #0F172A;
}

.highlight-price {
  color: #E11D48;
  font-weight: 900;
  font-size: 1.8rem;
}

.modal-subtitle {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal-features-list {
  background: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid #E2E8F0;
}

.modal-feature-item {
  font-size: 0.92rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: #22C55E;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
  margin-bottom: 20px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.modal-cta-btn:hover {
  transform: translateY(-2px);
  background: #16A34A;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.55);
}

.modal-decline-link {
  display: inline-block;
  color: #64748B;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.modal-decline-link:hover {
  color: #DC2626;
}

@media (max-width: 550px) {
  .upsell-modal-content {
    padding: 32px 20px;
  }
  .modal-title {
    font-size: 1.4rem;
  }
}


