@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&family=Archivo:wght@400;500;600&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --bg: #07090e;
  --bg-gradient: linear-gradient(135deg, #07090e 0%, #0c0f18 100%);
  --surface: #121622;
  --surface-secondary: #181d2c;
  --surface-featured: linear-gradient(135deg, rgba(227, 194, 117, 0.08) 0%, rgba(47, 109, 240, 0.03) 100%);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(227, 194, 117, 0.4);
  
  --primary: #3b82f6; /* Modern electric blue */
  --primary-hover: #60a5fa;
  --primary-glow: rgba(59, 130, 246, 0.25);
  --gold: #f59e0b; /* Warmer amber gold */
  --gold-glow: rgba(245, 158, 11, 0.2);
  --red: #ef4444;
  --green: #10b981;
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --font-title: 'Plus Jakarta Sans', 'Inter', 'Manrope', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;
  --font-support: 'Archivo', 'Inter', sans-serif;
  
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  font-size: 16px;
}

body {
  background-color: var(--bg);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-subtitle {
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title span {
  background: linear-gradient(135deg, #749ef9 0%, #2f6df0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.highlight-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 1.125rem;
  font-family: var(--font-support);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--primary-glow);
}

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

.btn-secondary {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 200;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-badge {
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.logo-img-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}

.logo-main {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.05rem;
  color: #e2e8f0;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--text-primary);
}

.header-cta {
  padding: 10px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.header-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-aluno {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-aluno:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.aluno-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 109, 240, 0.12) 0%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  background: rgba(47, 109, 240, 0.1);
  border: 1px solid rgba(47, 109, 240, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-badge.badge-gold {
  background: rgba(227, 194, 117, 0.05);
  border: 1px solid rgba(227, 194, 117, 0.25);
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge.badge-gold .badge-dot {
  color: var(--gold);
  font-size: 0.65rem;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.125rem; /* Compact layout */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.hero-title .crossed-out {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.28); /* Softer crossed-out text */
  font-weight: 800;
}

.hero-title .highlight-blue {
  color: #3b82f6; /* pop electric blue */
  font-weight: 800;
}

.hero-title .highlight-gold {
  color: var(--gold); /* Pop warm gold */
  font-weight: 800;
}

.text-gold {
  color: var(--gold);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
}

.text-white {
  color: #e2e8f0;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-btn-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.hero-meta-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.social-count {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.social-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 1025px) {
  .hero-image-container {
    margin-top: -36px;
  }
}

.hero-image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(47, 109, 240, 0.15) 0%, rgba(0,0,0,0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: #11141e;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  max-width: 420px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 520px; /* Taller image to align perfectly with content height */
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.hero-floating-badge {
  position: absolute;
  background: rgba(18, 22, 34, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  animation: float 6s ease-in-out infinite;
}

.hero-badge-1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}

.hero-badge-2 {
  top: 50px;
  right: -30px;
  animation-delay: 2s;
}

.hero-badge-3 {
  bottom: 180px;
  right: -40px;
  animation-delay: 4s;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(47, 109, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--primary);
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.badge-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ==========================================================================
   TRUST BAR SECTION (DIVIDER)
   ========================================================================== */
.trust-divider {
  width: 100%;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.trust-item {
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item-arrow {
  color: var(--primary); /* Vibrant electric blue */
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  flex-shrink: 0;
}

.trust-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item-title {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.trust-item-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-family: var(--font-support);
}

/* Responsive adjustment for trust bar */
@media (max-width: 768px) {
  .trust-divider {
    padding: 20px 0;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 20px 0;
  }
  .trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   GRID DIVIDERS (PREMIUM LAYOUT)
   ========================================================================== */
.grid-divider-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(18, 22, 34, 0.45);
  overflow: hidden;
  margin-bottom: 40px;
}

.grid-divider-3-item {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
  transition: var(--transition);
}

.grid-divider-3-item:nth-child(3n) {
  border-right: none;
}

/* Remove bottom borders on last row for standard 6-item grid */
.grid-divider-3-items-6 .grid-divider-3-item:nth-last-child(-n+3) {
  border-bottom: none;
}

/* For 7 items with last spanning all: item 7 has class .span-all */
.grid-divider-3-item.span-all {
  grid-column: span 3;
  border-right: none;
  border-bottom: none;
}

.grid-divider-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(18, 22, 34, 0.45);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-divider-2-item {
  padding: 30px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: var(--transition);
}

.grid-divider-2-item:nth-child(2n) {
  border-right: none;
}

.grid-divider-2-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.grid-divider-2-item:last-child:nth-child(odd) {
  grid-column: span 2;
  border-right: none;
  border-bottom: none;
}

/* ==========================================================================
   PAINS SECTION (THE PROBLEM)
   ========================================================================== */
.pains {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title span.highlight-red {
  background: none;
  -webkit-text-fill-color: #ef4444;
  color: #ef4444;
}

.section-title span.highlight-green {
  background: none;
  -webkit-text-fill-color: var(--green);
  color: var(--green);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: rgba(18, 22, 34, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.025);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.05);
}

.pain-card.span-all {
  grid-column: 2;
}

.pain-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}

.pain-icon-svg {
  width: 12px;
  height: 12px;
}

.pain-card:hover .pain-icon-wrapper {
  transform: scale(1.08);
  background: rgba(239, 68, 68, 0.22);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
}

.pain-text {
  color: #d1d5db;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-family: var(--font-support);
}

.pains-conclusion {
  margin-top: 50px;
  text-align: center;
}

.pains-conclusion-text {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: #f3f4f6;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .pains-conclusion-text {
    font-size: 1.25rem;
  }
}

.pains-conclusion-text .highlight-gold {
  color: var(--gold);
}

/* ==========================================================================
   STEPS SECTION (HOW IT WORKS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.step-card {
  background: rgba(30, 38, 58, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 18px 22px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.025);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.05);
}

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

.step-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  transition: var(--transition);
}

.step-card:hover .step-number {
  color: rgba(59, 130, 246, 0.08);
}

.step-icon {
  font-size: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  transform: scale(1.08);
  background: rgba(59, 130, 246, 0.22);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
}

.step-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.step-desc {
  color: #d1d5db;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-family: var(--font-support);
}

.steps .section-desc {
  text-align: justify;
  text-align-last: center;
  text-justify: inter-word;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-support);
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(24, 30, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.06);
}

/* 7th card spans both columns, centered */
.benefit-card-last {
  grid-column: span 2;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.benefit-check {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 3px;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.benefit-card:hover .benefit-check {
  background: rgba(16, 185, 129, 0.22);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.benefit-text {
  font-size: 1rem;
  line-height: 1.55;
  font-family: var(--font-support);
}

.benefit-lead {
  font-weight: 700;
  color: var(--text-primary);
}

.benefit-rest {
  color: #d1d5db;
}



/* ==========================================================================
   MENTOR SECTION (QUEM É O MENTOR)
   ========================================================================== */
.mentor {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

/* --- Biography (left) --- */
.mentor-bio {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mentor-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 12px 0 32px 0;
  color: var(--text-primary);
}

.mentor-story {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.mentor-story-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.mentor-story-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.mentor-story-label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mentor-story-text {
  color: #b0b7c3;
  font-size: 0.9rem;
  line-height: 1.65;
  font-family: var(--font-support);
}

/* Credential bar */
.mentor-cred-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(18, 22, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px 28px;
}

.mentor-cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 4px;
}

.mentor-cred-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--gold);
  line-height: 1;
}

.mentor-cred-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mentor-cred-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Image (right) --- */
.mentor-image-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mentor-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mentor-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.mentor-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.social-icon-link {
  display: inline-flex;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-icon-link:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mentor-carousel-wrap {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}

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

  .mentor-cred-bar {
    padding: 16px 16px;
  }

  .mentor-cred-num {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.stats {
  padding: 60px 0;
  background: linear-gradient(90deg, rgba(47, 109, 240, 0.08) 0%, rgba(77, 139, 255, 0.02) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #749ef9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS & VIDEOS (SOCIAL PROOF)
   ========================================================================== */
.testimonials {
  position: relative;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.video-player-mock {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f111a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(2px);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
}

.video-duration {
  align-self: flex-end;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.play-btn {
  width: 68px;
  height: 68px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 10px 25px var(--primary-glow);
  transition: var(--transition);
  align-self: center;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  background: var(--primary-hover);
  box-shadow: 0 15px 30px var(--primary-glow);
}

.video-info {
  padding: 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.video-student-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.video-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-gold {
  background: rgba(220, 168, 66, 0.15);
  color: var(--gold);
  border: 1px solid rgba(220, 168, 66, 0.3);
}

.quotes-carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prev-btn {
  left: -24px;
}

.next-btn {
  right: -24px;
}

.quotes-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 24px;
  padding: 10px 0;
}

.quotes-grid::-webkit-scrollbar {
  display: none;
}

.quotes-grid .quote-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  scroll-snap-align: center;
}

.quote-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  scroll-snap-align: center;
  transition: var(--transition);
  height: 420px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px -10px rgba(0,0,0,0.6);
}

/* ==========================================================================
   WHATSAPP & INSTAGRAM NATIVE UI
   ========================================================================== */
.wpp-card {
  background-color: #efeae2;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h10v10H10z" fill="rgba(0,0,0,0.02)"/></svg>');
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111b21;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.wpp-bubble {
  max-width: 85%;
  padding: 6px 7px 8px 9px;
  border-radius: 7.5px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.3;
  box-shadow: 0 1px 0.5px rgba(11,20,26,.13);
  display: flex;
  flex-direction: column;
}

.wpp-bubble.left {
  background-color: #ffffff;
  align-self: flex-start;
  border-top-left-radius: 0;
}
.wpp-bubble.left::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 8px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 13" xmlns="http://www.w3.org/2000/svg"><path opacity="0.13" d="M5.188 1H0v11.142l4.969-5.063C6.347 5.67 7.214 4.148 5.188 1z"/><path fill="%23ffffff" d="M5.188 0H0v11.142l4.969-5.063C6.347 4.67 7.214 3.148 5.188 0z"/></svg>');
}

.wpp-bubble.right {
  background-color: #d9fdd3;
  align-self: flex-end;
  border-top-right-radius: 0;
}
.wpp-bubble.right::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 8px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 8 13" xmlns="http://www.w3.org/2000/svg"><path opacity="0.13" d="M5.188 1H0v11.142l4.969-5.063C6.347 5.67 7.214 4.148 5.188 1z"/><path fill="%23d9fdd3" d="M5.188 0H0v11.142l4.969-5.063C6.347 4.67 7.214 3.148 5.188 0z"/></svg>');
  transform: scaleX(-1);
}

.wpp-text {
  margin-bottom: 2px;
}

.wpp-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.6875rem;
  color: #667781;
  margin-top: -4px;
  float: right;
  margin-left: 10px;
}

.wpp-tick {
  color: #53bdeb;
}

.wpp-audio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
}
.wpp-audio-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.wpp-audio-play {
  color: #8696a0; font-size: 1.5rem; line-height: 1;
}
.wpp-audio-waveform {
  flex: 1;
  height: 20px;
  background: repeating-linear-gradient(90deg, #8696a0, #8696a0 2px, transparent 2px, transparent 4px);
  opacity: 0.5;
}

.ig-card {
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000000;
  width: 100%;
  height: 100%;
  align-items: flex-start;
}

.ig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.ig-avatar-ring {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-avatar-ring img {
  border: 2px solid #fff;
}

.ig-content {
  flex: 1;
}

.ig-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ig-author {
  font-weight: 600;
  font-size: 0.875rem;
}

.ig-time {
  color: #737373;
  font-size: 0.875rem;
}

.ig-text {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.ig-actions {
  color: #737373;
  font-size: 0.75rem;
  font-weight: 600;
}

.ig-like {
  color: #737373;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  line-height: 1;
}

.quote-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-family: var(--font-support);
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
}

.quote-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9375rem;
}

.quote-role {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   OFFER SECTION
   ========================================================================== */
.offer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(47, 109, 240, 0.05) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.offer-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font-support);
}

.deliverable-bullet {
  color: var(--primary);
  font-size: 1rem;
}

.offer-pricing-summary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.summary-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-value-crossed {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 12px;
}

.summary-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(227, 194, 117, 0.1);
  border: 1px solid rgba(227, 194, 117, 0.2);
  border-radius: 100px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 16px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.price-card-header {
  margin-bottom: 24px;
}

.plan-featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.plan-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.plan-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  min-height: 38px;
  display: flex;
  align-items: center;
  font-family: var(--font-support);
}

.plan-price-block {
  margin-bottom: 30px;
}

.plan-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.plan-unit {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.plan-pix {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.75;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

.price-card-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--border-hover);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-primary);
}

.price-card.featured {
  background: var(--surface-featured);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(227, 194, 117, 0.05);
}

.price-card.featured:hover {
  box-shadow: 0 20px 45px rgba(227, 194, 117, 0.1);
  border-color: var(--gold);
}

.price-card.featured .plan-name {
  color: var(--gold);
}

.price-card.featured .plan-price {
  color: var(--gold);
}

.price-card.featured .price-card-btn {
  background: var(--gold);
  color: #000;
  border: none;
}

.price-card.featured .price-card-btn:hover {
  background: #f1d593;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--gold-glow);
}

.plan-security-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-support);
}

/* Plan features list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-support);
}

.plan-feature-check {
  color: var(--green);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.plan-feature-check.gold {
  color: var(--gold);
}

/* Bottom badge for featured plan */
.plan-best-value-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c1507;
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */
.guarantee-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 800px;
  margin: 60px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.guarantee-badge-art {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(227, 194, 117, 0.2) 0%, rgba(227, 194, 117, 0.05) 100%);
  border: 2px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(227, 194, 117, 0.05);
}

.guarantee-num {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.guarantee-unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.guarantee-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-family: var(--font-support);
}

.guarantee-desc strong {
  color: var(--text-primary);
}

/* ==========================================================================
   ACCORDIONS (FAQ & OBJECTIONS)
   ========================================================================== */
.accordions-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

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

.accordion-item.active {
  border-color: rgba(47, 109, 240, 0.3);
  background: var(--surface-secondary);
}

.accordion-trigger {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  gap: 20px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: rgba(47, 109, 240, 0.1);
  border-color: rgba(47, 109, 240, 0.2);
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.accordion-inner {
  padding: 0 30px 24px 30px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-family: var(--font-support);
}

/* ==========================================================================
   FOOTER CTA
   ========================================================================== */
.footer-cta {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(47, 109, 240, 0.05) 100%);
  border-top: 1px solid var(--border);
}

.footer-cta-box {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.footer-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.footer-avatar {
  width: 260px;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--primary);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.footer-avatar-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  border-radius: 24px;
}

.footer-cta-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-cta-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 650px;
  margin-bottom: 40px;
  font-family: var(--font-support);
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.footer-cta-btn {
  padding: 18px 44px;
  font-size: 1.125rem;
  white-space: nowrap;
}

.footer-cta-btn span {
  font-size: 1.25rem;
}

.footer-cta-steps {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 40px 0;
  background: #05060a;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-copy {
  text-align: center;
  max-width: 600px;
  line-height: 1.8;
}

/* ==========================================================================
   STICKY CONVERSION BAR
   ========================================================================== */
.sticky-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 90;
  background: rgba(13, 15, 25, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(47, 109, 240, 0.2);
  padding: 16px 0;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

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

.sticky-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.sticky-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.sticky-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.sticky-cta {
  padding: 10px 24px;
  font-size: 0.875rem;
  border-radius: 8px;
}

/* ==========================================================================
   REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Dynamic Zoom for Desktop based on viewport height */
@media (min-width: 1025px) and (max-height: 880px) {
  html {
    zoom: 0.9;
  }
}

@media (min-width: 1025px) and (max-height: 720px) {
  html {
    zoom: 0.82;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3rem;
    text-align: left;
    width: 100%;
  }
  
  .hero-desc {
    margin: 0 auto 36px auto;
  }
  
  .hero-btn-container {
    justify-content: center;
  }
  
  .hero-meta {
    justify-content: center;
  }
  
  .hero-image-container {
    margin-top: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .nav {
    display: none; /* simple hidden nav for simplicity on mobile, or can use basic dropdown */
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .grid-divider-3, .grid-divider-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-divider-3-item, .grid-divider-2-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    padding: 30px 24px;
  }
  
  .grid-divider-3-item:last-child, 
  .grid-divider-2-item:last-child {
    border-bottom: none !important;
  }
  
  .pains-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pain-card.span-all {
    grid-column: auto;
  }
  
  .pain-card {
    padding: 24px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .step-card {
    padding: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card-last {
    grid-column: auto;
    max-width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quotes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .offer-box {
    padding: 30px 24px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .price-card {
    padding: 30px 20px;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 24px;
  }
  
  .footer-cta-title {
    font-size: 1.875rem;
  }

  .footer-cta-box {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-cta-text {
    align-items: center;
    text-align: center;
  }

  .footer-cta-btn {
    padding: 16px 24px;
    font-size: 0.9375rem;
    width: 100%;
  }

  .footer-avatar {
    width: 180px;
    height: 220px;
  }

  
  .sticky-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   SECTION VISUAL SEPARATION
   Each section gets a distinct visual identity so boundaries are clear.
   ========================================================================== */

/* Problema — red tinted top */
.pains {
  background: linear-gradient(180deg, rgba(239,68,68,0.035) 0%, rgba(7,9,14,0) 55%) !important;
  border-top: 1px solid rgba(239,68,68,0.18) !important;
  border-bottom: 1px solid rgba(239,68,68,0.08) !important;
}
.pains .section-subtitle { color: #ef4444; }

/* Solução — blue tinted top */
.steps {
  border-top: 1px solid rgba(59,130,246,0.14);
  background: linear-gradient(180deg, rgba(59,130,246,0.028) 0%, rgba(7,9,14,0) 55%);
  border-bottom: 1px solid rgba(59,130,246,0.06);
}

/* Diferenciais/Benefícios — green tinted top */
.benefits {
  border-top: 1px solid rgba(16,185,129,0.18) !important;
  background: linear-gradient(180deg, rgba(16,185,129,0.03) 0%, rgba(7,9,14,0) 55%) !important;
  border-bottom: 1px solid rgba(16,185,129,0.08) !important;
}
.benefits .section-subtitle { color: #34d399; }

/* Mentor — gold tinted */
.mentor {
  background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, rgba(7,9,14,0) 50%) !important;
  border-top: 1px solid rgba(245,158,11,0.15) !important;
  border-bottom: 1px solid rgba(245,158,11,0.07) !important;
}
.mentor .section-subtitle { color: var(--gold); }

/* Depoimentos — blue tinted */
.testimonials {
  border-top: 1px solid rgba(59,130,246,0.12);
  background: linear-gradient(180deg, rgba(59,130,246,0.025) 0%, rgba(7,9,14,0) 50%);
  border-bottom: 1px solid rgba(59,130,246,0.06);
}

/* Oferta — surface layer */
.offer {
  background: rgba(15, 19, 32, 0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* FAQ — lighter surface */
.faq {
  border-top: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,255,255,0.018) 0%, rgba(7,9,14,0) 70%);
}

/* ==========================================================================
   NOTEBOOK ZOOM ADJUSTMENT
   Compacts layout on desktops with limited vertical space (laptops).
   90% scale for screens up to 880px tall, 82% for up to 720px tall.
   ========================================================================== */
@media (min-width: 1025px) and (max-height: 880px) {
  html {
    zoom: 0.9;
  }
}

@media (min-width: 1025px) and (max-height: 720px) {
  html {
    zoom: 0.82;
  }
}

/* ==========================================================================
   HAMBURGER BUTTON
   ========================================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition);
  z-index: 200;
}

.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: all;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #0e1120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: calc(var(--header-height) + 16px) 24px 32px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: var(--text-primary);
}

.mobile-menu-cta {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.9375rem;
  margin-top: 4px;
}

/* ==========================================================================
   MOBILE OVERHAUL  (≤768px)
   ========================================================================== */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .hamburger     { display: flex; }
  .header-cta    { display: none !important; }
  .nav           { display: none; }

  .logo-main { font-size: 0.875rem; }
  .logo-sub  { font-size: 0.625rem; }

  /* --- Hero --- */
  .hero { padding-top: calc(var(--header-height) + 32px); padding-bottom: 48px; }
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  .hero-desc { 
    font-size: 0.9375rem; 
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .section-desc,
  .footer-cta-desc {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  /* --- Section padding --- */
  .section { padding: 64px 0; }

  /* ---------------------------------------------------------------
     SCROLL-SNAP CAROUSELS
     Each grid becomes a horizontal swipe carousel on mobile.
     Cards peek ~12px to hint at more content.
  --------------------------------------------------------------- */

  /* Shared carousel track reset */
  .steps-grid,
  .quotes-grid,
  .pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: unset !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    gap: 14px !important;
    /* extend to screen edges */
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding: 24px 24px 24px !important;
    max-width: none !important;
  }

  .steps-grid::-webkit-scrollbar,
  .quotes-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar { display: none; }

  /* 1 card per view (centered) */
  .step-card,
  .quote-card,
  .price-card {
    min-width: calc(100vw - 72px) !important;
    max-width: calc(100vw - 72px) !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
    /* reset grid span */
    grid-column: auto !important;
    margin: 0 !important;
  }

  /* Vertical Stack overrides for Pains and Benefits */
  .pains-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-card.span-all,
  .benefit-card-last {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }

  .pain-card {
    padding: 24px;
    align-items: flex-start;
  }

  .benefit-card {
    padding: 20px 24px;
    align-items: flex-start;
  }

  /* Steps */
  .step-card { padding: 20px 22px !important; }

  /* Trust bar: vertical stack */
  .trust-bar-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }
  .trust-item:last-child { border-bottom: none !important; }

  /* --- Mentor section --- */
  .mentor-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .mentor-carousel-wrap {
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  .mentor-title { font-size: 1.75rem !important; }
  .mentor-cred-bar { padding: 14px 16px !important; }

  /* --- Videos grid: carousel too --- */
  .videos-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 14px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding: 6px 24px 24px !important;
    -webkit-overflow-scrolling: touch;
  }
  .videos-grid::-webkit-scrollbar { display: none; }
  .video-card {
    min-width: calc(100vw - 72px) !important;
    max-width: calc(100vw - 72px) !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
  }

  /* --- Offer section: single col --- */
  .offer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .offer-box  { padding: 28px 20px !important; }
  .offer-pricing-summary { text-align: center !important; }

  /* --- Guarantee box --- */
  .guarantee-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 28px 20px !important;
    gap: 20px !important;
  }

  /* --- Pricing: add bottom padding so badge doesn't clip --- */
  .pricing-grid { padding-bottom: 36px !important; }

  /* --- FAQ: hidden on mobile --- */
  .faq { display: none !important; }

  /* --- Pains conclusion: smaller --- */
  .pains-conclusion { margin-top: 36px !important; }
  .pains-conclusion-text { font-size: 1.25rem !important; }

  /* --- Footer CTA --- */
  .footer-cta-title { font-size: 1.75rem !important; }
  .footer-avatar { width: 90px !important; height: 90px !important; }

  /* --- Sticky bar --- */
  .sticky-container {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
  .sticky-cta { width: 100% !important; text-align: center !important; }
}
/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.video-modal-close:hover {
  color: var(--red);
}

.video-modal-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.video-modal-content video,
.video-modal-content img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 16px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .video-modal-close {
    top: 10px;
    right: 20px;
  }
  .video-modal-container {
    height: 100vh;
    padding: 60px 20px;
  }
  .video-modal-content {
    flex-direction: column;
  }
  .carousel-btn {
    display: none;
  }
  .quotes-grid .quote-card {
    width: calc(100vw - 48px);
  }
}
