/* ============================
   EVERYDAY CONVERSATION - IMMERSIVE SITE
   ============================ */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0f;
  color: #e0e0e0;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* VARIABLES */
:root {
  --accent: #6c5ce7;
  --accent2: #00cec9;
  --accent-glow: rgba(108, 92, 231, 0.4);
  --red: #ff6b6b;
  --green: #00b894;
  --bg-dark: #0a0a0f;
  --bg-card: #14141e;
  --bg-card2: #1a1a2e;
  --text: #e0e0e0;
  --text-muted: #8888a0;
  --radius: 16px;
  --radius-sm: 8px;
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* LOADING SCREEN */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.6s, visibility 0.6s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: logoPulse 1.5s ease-in-out infinite;
}
.loading-logo .real-logo-img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: 50%;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.loading-text { color: var(--text-muted); font-size: 14px; }
.loading-bar { width: 200px; height: 3px; background: #222; border-radius: 2px; overflow: hidden; }
.loading-fill { height: 100%; background: var(--accent); width: 0; animation: loadFill 0.6s ease-out forwards; }
@keyframes loadFill { to { width: 100%; } }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 1001;
  width: 0;
  transition: width 0.1s linear;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transform: translateY(-100%);
  transition: transform 0.4s;
}
.nav.visible { transform: translateY(0); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #dc2043, #c41838);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700; font-size: 18px;
  color: #e8c4a0;
  border: 2px solid #1a1a1a;
}
.nav-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text { font-weight: 600; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; font-weight: 500; }
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px var(--accent-glow); }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}
.hero-particles {
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(108,92,231,0.3), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(0,206,201,0.2), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.15), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(108,92,231,0.2), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(0,206,201,0.15), transparent),
    radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.1), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(108,92,231,0.25), transparent);
  animation: particleFloat 20s ease-in-out infinite;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-content { position: relative; z-index: 2; }
/* HERO LOGO */
.hero-logo-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}
.hero-logo-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 40% 35%, #e8334e, #c41838 60%, #a01030);
  box-shadow: 0 0 0 4px #1a1a1a, 0 8px 30px rgba(196, 24, 56, 0.5);
}
.hero-logo-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.3);
}
.hero-logo-icon::after {
  content: 'E';
  position: relative;
  z-index: 1;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(180deg, #f0d4b4 0%, #d4a872 40%, #c49a6c 60%, #e0c4a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.3));
}
.hero-logo-real {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 30px rgba(196, 24, 56, 0.5));
}
.hero-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(108,92,231,0.15);
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-title-2 { margin-bottom: 32px; }
.title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 0.8s ease-out forwards;
}
.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.hero-title-2 .title-line:nth-child(1) { animation-delay: 0.8s; }
.hero-title-2 .title-line:nth-child(2) { animation-delay: 1.0s; }
.hero-title-2 .title-line:nth-child(3) { animation-delay: 1.2s; }
@keyframes titleReveal {
  to { opacity: 1; transform: translateY(0); }
}
.title-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.8s forwards;
}
.hero-scroll-hint span { font-size: 12px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 2s forwards;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
}
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 90px 0; position: relative; }
.section-dark { background: #0d0d14; }
.section-gradient {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d1a 50%, var(--bg-dark) 100%);
}
.section-overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   PROBLEMA SECTION
   ============================ */
.big-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 60px;
  color: white;
}
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
  margin: 0 4px;
}
.word-reveal.visible { opacity: 1; transform: translateY(0); }
.highlight-red { color: var(--red); }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s, border-color 0.4s;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.problem-card.featured {
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.05));
  border-color: rgba(108,92,231,0.3);
}
.problem-card.featured:hover { border-color: var(--accent); }
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: white; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.problem-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.problem-fill {
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-fill.accent { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.problem-fill.animated { width: var(--target-width); }
.problem-metric { font-size: 12px; color: var(--text-muted); }

/* ============================
   ECOSYSTEM
   ============================ */
.ecosystem-visual {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}
.eco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.eco-core {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.eco-core-text { font-weight: 800; font-size: 16px; color: white; z-index: 2; }
.eco-pulse {
  position: absolute; inset: -10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: ecoPulse 3s ease-out infinite;
  opacity: 0;
}
.eco-pulse.delay-1 { animation-delay: 1s; }
.eco-pulse.delay-2 { animation-delay: 2s; }
@keyframes ecoPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}
.eco-orbit { position: absolute; inset: 0; animation: orbitSpin 30s linear infinite, orbitBreathe 6s ease-in-out infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitBreathe {
  0%, 100% { inset: 0; }
  50% { inset: 20px; }
}
.eco-planet {
  position: absolute;
  width: 110px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.eco-planet:hover { transform: scale(1.1); }
.eco-planet:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.eco-planet:nth-child(2) { top: 19%; right: 0; }
.eco-planet:nth-child(3) { bottom: 12%; right: 5%; }
.eco-planet:nth-child(4) { bottom: 12%; left: 5%; }
.eco-planet:nth-child(5) { top: 19%; left: 0; }
.planet-icon {
  width: 60px; height: 60px;
  background: var(--bg-card2);
  border: 2px solid rgba(108,92,231,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: none;
}
.eco-planet:hover .planet-icon {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.planet-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }

/* COUNTER-ROTATE labels */
.eco-planet * { animation: orbitCounterSpin 30s linear infinite; }
@keyframes orbitCounterSpin { to { transform: rotate(-360deg); } }
.eco-planet:nth-child(1) * { transform-origin: center center; }

/* ============================
   PILARES
   ============================ */
.pilar-section {
  padding: 70px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pilar-section.visible { opacity: 1; transform: translateY(0); }
.pilar-section:last-child { border-bottom: none; }
.pilar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pilar-grid.reverse { direction: rtl; }
.pilar-grid.reverse > * { direction: ltr; }
.pilar-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.pilar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.pilar-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.pilar-features { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.feature-check {
  width: 24px; height: 24px;
  background: rgba(0,184,148,0.15);
  color: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* SCHEDULE MOCKUP */
.schedule-mockup, .platform-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text-muted);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.schedule-grid-mini { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; padding: 16px; }
.schedule-day { text-align: center; }
.day-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.time-slot {
  padding: 6px 4px;
  font-size: 11px;
  border-radius: 6px;
  margin-bottom: 4px;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  transition: all 0.3s;
}
.time-slot.active {
  background: rgba(108,92,231,0.2);
  color: var(--accent);
  border: 1px solid rgba(108,92,231,0.3);
}
.time-slot.dim { color: rgba(255,255,255,0.1); }
.time-slot.break {
  background: rgba(255,107,107,0.12);
  color: rgba(255,107,107,0.5);
  border: 1px solid rgba(255,107,107,0.15);
  font-size: 9px;
}
.mockup-badge {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  color: var(--accent);
  background: rgba(108,92,231,0.05);
  font-weight: 600;
}

/* SCHEDULE TABLE V2 */
.schedule-table-v2 {
  padding: 16px;
  overflow-x: auto;
}
.schedule-table-v2 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.schedule-table-v2 thead th {
  padding: 8px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.schedule-table-v2 tbody td {
  padding: 8px 4px;
  text-align: center;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  min-width: 80px;
}
.schedule-table-v2 .period-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 11px;
  text-align: left;
  padding-left: 8px;
  white-space: nowrap;
  min-width: 60px;
}
.schedule-table-v2 .slot-empty {
  background: transparent;
}
.schedule-table-v2 .slot-active {
  background: rgba(108,92,231,0.12);
  border-radius: 8px;
  padding: 8px 6px;
  border: 1px solid rgba(108,92,231,0.2);
}
.schedule-table-v2 .slot-active.slot-full {
  background: rgba(0,206,201,0.1);
  border-color: rgba(0,206,201,0.25);
}
.schedule-table-v2 .slot-time {
  display: block;
  font-weight: 700;
  color: white;
  font-size: 11px;
  margin-bottom: 2px;
}
.schedule-table-v2 .slot-active.slot-full .slot-time {
  color: var(--accent2);
}
.schedule-table-v2 .slot-info {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.schedule-table-v2 .slot-note {
  display: block;
  font-size: 8px;
  color: var(--accent);
  font-style: italic;
}
.schedule-table-v2 .slot-active.slot-full .slot-note {
  color: var(--accent2);
}

/* PHONE MOCKUP */
.phone-mockup {
  width: 320px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.phone-notch {
  width: 120px; height: 24px;
  background: #0a0a0f;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0d1117;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
}
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1f2c34;
}
.wa-avatar {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
}
.wa-name { display: block; font-size: 14px; font-weight: 600; color: white; }
.wa-status { font-size: 11px; color: var(--accent2); }
.wa-messages { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.wa-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.wa-msg.received {
  background: #1f2c34;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #e0e0e0;
}
.wa-msg.sent {
  background: #005c4b;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: white;
}
.wa-msg.correction { border-left: 3px solid var(--accent2); }
.wa-time { display: block; font-size: 10px; color: rgba(255,255,255,0.4); text-align: right; margin-top: 4px; }
.audio-wave { color: var(--accent2); }

/* PHONE MOCKUP V2 - CENTRAL DE ATIVIDADES */
.phone-frame-v2 {
  width: 340px;
  margin: 0 auto;
  background-color: #1a1b3a;
  background-image: linear-gradient(145deg, #1a1b3a, #12132a);
  border-radius: 36px;
  border: 3px solid #2a2b4a;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.phone-notch-v2 {
  width: 100px; height: 22px;
  background: #0a0b1a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen-v2 {
  background: #0f1029;
  border-radius: 24px;
  max-height: 620px;
  overflow-y: auto;
  padding: 14px 10px;
}
.phone-screen-v2::-webkit-scrollbar { width: 3px; }
.phone-screen-v2::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.app-header-v2 { text-align: center; margin-bottom: 12px; }
.app-logo-v2 {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #dc2043, #c41838);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: 'Georgia', 'Times New Roman', serif; font-weight: 700;
  font-size: 18px; color: #e8c4a0;
  margin-bottom: 6px;
  border: 2px solid #1a1a1a;
}
.app-title-v2 { font-family: 'Space Grotesk'; font-size: 15px; color: #fff; margin-bottom: 1px; font-weight: 700; }
.app-subtitle-v2 { font-size: 12px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 3px; }
.app-label-v2 { font-size: 7px; color: #666; letter-spacing: 2px; text-transform: uppercase; }

.app-recommend {
  background: #161838;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
  text-align: center;
}
.rec-icon { font-size: 16px; display: block; margin-bottom: 2px; }
.rec-title { font-size: 12px; color: #a78bfa; font-weight: 600; display: block; margin-bottom: 6px; }
.rec-time {
  background: #1e2048;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 10px;
  color: #a0a0b8;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.rec-time strong { color: #4ade80; }
.rec-clock { font-size: 12px; }

.activity-list-v2 { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.act-item-v2 {
  display: flex; align-items: center;
  background: #161838;
  border-radius: 10px;
  padding: 8px 8px;
  gap: 7px;
  transition: all 0.2s;
}
.act-item-v2:hover { background: #1e2050; transform: translateX(3px); }
.act-num-v2 { font-size: 9px; color: #888; font-weight: 600; min-width: 18px; }
.act-dot-v2 {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.act-info-v2 { flex: 1; line-height: 1.3; }
.act-info-v2 strong { font-size: 11px; color: #fff; display: block; }
.act-info-v2 small { font-size: 9px; color: #777; }
.act-hint-v2 { color: #f39c12 !important; font-style: italic; font-size: 8px !important; display: block; }
.act-arrow-v2 { color: #555; font-size: 16px; }

.app-notice-v2 {
  background: #161838;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  display: flex; gap: 8px; align-items: flex-start;
  border-left: 3px solid #3b82f6;
}
.notice-icon-v2 { font-size: 14px; flex-shrink: 0; }
.app-notice-v2 p { font-size: 8px; color: #8888aa; line-height: 1.5; }

.app-bottom-card-v2 {
  display: flex; align-items: center;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 8px;
  gap: 10px;
  transition: all 0.2s;
}
.app-bottom-card-v2:hover { transform: translateY(-2px); }
.green-v2 { background: #0d2818; border: 1px solid #1a4030; }
.orange-v2 { background: #2a1a0a; border: 1px solid #3a2510; }
.bc-icon-v2 {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.green-bg-v2 { background: #16a34a; }
.orange-bg-v2 { background: #ea580c; }
.bc-text-v2 { flex: 1; }
.bc-text-v2 strong { font-size: 11px; color: #4ade80; display: block; margin-bottom: 2px; }
.orange-v2 .bc-text-v2 strong { color: #fb923c; }
.bc-text-v2 small { font-size: 8px; color: #8888aa; line-height: 1.4; }
.bc-arrow-v2 {
  font-size: 16px; color: #555;
  width: 26px; height: 26px;
  border: 1px solid #333; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* PLATFORM MOCKUP V2 - REAL COURSE GRID */
.platform-v2-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.platform-v2-header { margin-bottom: 24px; }
.pv2-overline { font-size: 10px; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; font-weight: 700; }
.pv2-title { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 700; color: white; margin: 4px 0; }
.pv2-subtitle { font-size: 13px; color: var(--text-muted); }

.platform-v2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.week-card-v2 {
  background: #161828;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s, border-color 0.3s;
}
.week-card-v2:hover { transform: translateY(-4px); border-color: rgba(108,92,231,0.3); }

.week-thumb-v2 {
  height: 80px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1a2a 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.week-badge-v2 {
  position: absolute;
  top: 6px; left: 6px;
  background: rgba(108,92,231,0.8);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  color: white;
}
.week-play-v2 {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.week-cover-icon {
  font-size: 36px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  z-index: 1;
}
.week-cover-unified {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1654 30%, #6c5ce7 70%, #a29bfe 100%) !important;
  position: relative;
  overflow: hidden;
}
.week-cover-unified::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(108,92,231,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0,206,201,0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(162,155,254,0.15) 0%, transparent 50%);
  opacity: 0.8;
}
.week-cover-unified::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.week-number-overlay {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  z-index: 1;
  letter-spacing: -1px;
}
.week-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  border-radius: 50%;
}

.week-body-v2 { padding: 10px; }
.week-body-v2 h5 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 6px; }
.week-body-v2 ul { margin-bottom: 10px; }
.week-body-v2 li {
  font-size: 9px;
  color: var(--text-muted);
  padding: 2px 0 2px 12px;
  position: relative;
  line-height: 1.4;
}
.week-body-v2 li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-size: 6px;
  top: 4px;
}

.week-progress-v2 {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.wp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transition: width 1s ease-out;
}
.wp-pct { font-size: 10px; color: var(--text-muted); }

.platform-v2-more {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.platform-v2-more span { font-size: 13px; color: var(--accent); font-weight: 600; }
.more-dots { display: flex; justify-content: center; gap: 4px; margin-top: 8px; }
.more-dots span { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; opacity: 0.4; }

/* OLD PLATFORM MOCKUP (UNUSED BUT KEPT FOR REFERENCE) */
.platform-content { display: grid; grid-template-columns: 140px 1fr; }
.platform-sidebar { background: rgba(255,255,255,0.02); padding: 12px; border-right: 1px solid rgba(255,255,255,0.06); }
.sidebar-item {
  padding: 8px 10px;
  font-size: 11px;
  border-radius: 6px;
  margin-bottom: 4px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.sidebar-item.active { background: rgba(108,92,231,0.15); color: var(--accent); }
.sidebar-item.locked { opacity: 0.4; }
.platform-main { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.lesson-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
}
.lesson-card.done { opacity: 0.7; }
.lesson-card.current {
  background: rgba(108,92,231,0.1);
  border-color: rgba(108,92,231,0.3);
}
.lesson-check { color: var(--green); font-size: 14px; }
.lesson-play { color: var(--accent); }
.lesson-lock { opacity: 0.3; }
.lesson-progress { margin-left: auto; font-size: 11px; color: var(--text-muted); }

/* FLASHCARD DEMO */
.flashcard-demo { text-align: center; }
.flashcard-stack { perspective: 1000px; margin-bottom: 24px; }
.flashcard {
  width: 280px;
  height: 180px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flashcard:hover { transform: rotateY(180deg); }
.card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.card-face.front {
  background: linear-gradient(135deg, var(--bg-card2), #252545);
  border: 1px solid rgba(108,92,231,0.3);
}
.card-face.back {
  background: linear-gradient(135deg, #1a3a2e, #142e25);
  border: 1px solid rgba(0,184,148,0.3);
  transform: rotateY(180deg);
}
.card-lang {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.card-face.back .card-lang { color: var(--green); }
.card-word { font-size: 18px; font-weight: 600; color: white; }
.card-hint { font-size: 11px; color: var(--text-muted); margin-top: 12px; }
.card-buttons { display: flex; gap: 8px; margin-top: 16px; }
.card-btn {
  padding: 4px 12px;
  border-radius: 6px;
  border: none;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.card-btn.hard { background: rgba(255,107,107,0.2); color: var(--red); }
.card-btn.good { background: rgba(108,92,231,0.2); color: var(--accent); }
.card-btn.easy { background: rgba(0,184,148,0.2); color: var(--green); }

.flashcard-stats { display: flex; justify-content: center; gap: 32px; }
.fc-stat { text-align: center; }
.fc-num { display: block; font-size: 24px; font-weight: 700; color: white; font-family: 'Space Grotesk'; }
.fc-label { font-size: 12px; color: var(--text-muted); }

/* FLASHCARD DEMO V2 */
.flashcard-demo-v2 {
  max-width: 340px;
  margin: 0 auto;
}
.fc-card-v2 {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 12px;
}
.fc-card-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.fc-front-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fc-back-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px !important;
}
.fc-audio-btn {
  width: 40px;
  height: 40px;
  background: rgba(108,92,231,0.15);
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}
.fc-audio-btn:hover {
  background: rgba(108,92,231,0.3);
}
.fc-phrase-v2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}
.fc-highlight-red {
  color: #ff6b6b;
  font-weight: 700;
}
.fc-blue {
  color: #74b9ff;
}
.fc-purple {
  color: #a29bfe;
}
.fc-reveal-hint {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}
.fc-phrase-top-v2 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
}
.fc-divider-v2 {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 0;
}
.fc-translation-v2 {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2px;
}
.fc-image-placeholder-v2 {
  width: 100%;
  height: 70px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.fc-img-icon {
  font-size: 28px;
}
.fc-img-text {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.5;
}
.fc-difficulty-btns {
  display: flex;
  gap: 6px;
  width: 100%;
  margin-top: 2px;
}
.fc-diff-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.3s;
}
.fc-diff-btn:hover {
  transform: translateY(-2px);
}
.fc-diff-icon {
  font-size: 16px;
}
.fc-diff-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.fc-diff-time {
  font-size: 11px;
  font-weight: 700;
}
.fc-diff-hard {
  border-color: rgba(255,107,107,0.2);
}
.fc-diff-hard:hover {
  background: rgba(255,107,107,0.1);
  border-color: rgba(255,107,107,0.4);
}
.fc-diff-hard .fc-diff-time {
  color: var(--red);
}
.fc-diff-medium {
  border-color: rgba(108,92,231,0.2);
}
.fc-diff-medium:hover {
  background: rgba(108,92,231,0.1);
  border-color: rgba(108,92,231,0.4);
}
.fc-diff-medium .fc-diff-time {
  color: var(--accent);
}
.fc-diff-easy {
  border-color: rgba(0,184,148,0.2);
}
.fc-diff-easy:hover {
  background: rgba(0,184,148,0.1);
  border-color: rgba(0,184,148,0.4);
}
.fc-diff-easy .fc-diff-time {
  color: var(--green);
}
.fc-nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
}
.fc-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* PLATFORM CLEAN */
.plat-clean {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plat-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.plat-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.plat-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}
.plat-overline {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.plat-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  color: white;
  margin-top: 2px;
}

/* Stats grid */
.plat-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.plat-stat-card {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.3s;
}
.plat-stat-card:hover {
  border-color: rgba(108,92,231,0.3);
}
.plat-stat-icon {
  font-size: 22px;
  margin-bottom: 2px;
}
.plat-stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.plat-stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Timeline vertical */
.plat-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}
.plat-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #22c55e, #f59e0b, #6c5ce7, #e84393);
  border-radius: 999px;
}
.plat-module {
  position: relative;
  padding: 12px 0;
}
.plat-mod-dot {
  position: absolute;
  left: -20px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
  z-index: 1;
}
.plat-mod-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.plat-mod-content:hover {
  border-color: rgba(108,92,231,0.25);
  transform: translateX(4px);
}
.plat-mod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.plat-mod-header h5 {
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.plat-mod-badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(108,92,231,0.12);
  color: var(--accent);
  border: 1px solid rgba(108,92,231,0.25);
  font-weight: 600;
  white-space: nowrap;
}
.plat-mod-topics {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Bonus row */
.plat-bonus-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(108,92,231,0.08);
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

/* FLASHCARD SHOWCASE */
.fc-showcase {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.fc-app-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}
.fc-app-streak {
  font-size: 12px;
  color: #fdcb6e;
  font-weight: 600;
}
.fc-stats-row {
  display: flex;
  gap: 8px;
}
.fc-stat-pill {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.fc-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}
.fc-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card principal com flip */
.fc-main-card {
  perspective: 1000px;
  cursor: pointer;
}
.fc-main-inner {
  position: relative;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fc-main-card.is-flipped .fc-main-inner {
  transform: rotateY(180deg);
}
.fc-main-front,
.fc-main-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(108,92,231,0.25);
  background: var(--bg-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  overflow: hidden;
}
.fc-main-back {
  transform: rotateY(180deg);
}
.fc-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(108,92,231,0.15), transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}
.fc-cat-badge {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0,206,201,0.15);
  border: 1px solid rgba(0,206,201,0.3);
  border-radius: 999px;
  padding: 4px 10px;
  position: relative;
  z-index: 1;
}
.fc-badge-purple {
  color: #a29bfe;
  background: rgba(162,155,254,0.15);
  border-color: rgba(162,155,254,0.35);
}
.fc-badge-green {
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.3);
}
.fc-main-phrase {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-top: 18px;
  flex: 1;
}
.fc-word-red { color: #ff6b6b; }
.fc-word-purple { color: #a29bfe; }
.fc-word-green { color: #4ade80; }
.fc-tap-hint {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: auto;
}

/* Verso do card */
.fc-back-english {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
}
.fc-back-divider {
  width: 50%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px 0;
}
.fc-back-pt {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}
.fc-back-img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.fc-back-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
}
.fc-rate-btns {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.fc-rate-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.fc-rate-btn:hover {
  transform: translateY(-2px);
}
.fc-rate-btn strong {
  font-size: 11px;
  color: var(--text-muted);
}
.fc-rate-btn small {
  font-size: 11px;
  font-weight: 700;
}
.fc-rate-hard { border-color: rgba(255,107,107,0.3); }
.fc-rate-hard small { color: #ff6b6b; }
.fc-rate-good { border-color: rgba(108,92,231,0.3); }
.fc-rate-good small { color: var(--accent); }
.fc-rate-easy { border-color: rgba(0,184,148,0.3); }
.fc-rate-easy small { color: var(--green); }

/* Fila de cards atrás */
.fc-queue {
  position: relative;
  height: 60px;
  margin-top: -8px;
}
.fc-queue-card {
  position: absolute;
  left: 50%;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-queue-card p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.fc-q1 {
  transform: translateX(-50%) scale(0.95);
  opacity: 0.6;
  z-index: 2;
  top: 0;
  width: 88%;
}
.fc-q2 {
  transform: translateX(-50%) scale(0.9);
  opacity: 0.35;
  z-index: 1;
  top: 8px;
  width: 80%;
}

/* Session progress */
.fc-session-progress {
  text-align: center;
}
.fc-session-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}
.fc-session-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  transition: width 0.3s ease-out;
}
.fc-session-text {
  font-size: 11px;
  color: var(--text-muted);
}

/* CORRECTION DEMO */
.correction-demo {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
}
.correction-label { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.correction-original p, .correction-fixed p { font-size: 15px; line-height: 1.7; }
.error-text { background: rgba(255,107,107,0.2); color: var(--red); padding: 2px 4px; border-radius: 3px; text-decoration: line-through; }
.fixed-text { background: rgba(0,184,148,0.2); color: var(--green); padding: 2px 4px; border-radius: 3px; }
.correction-arrow { text-align: center; font-size: 24px; color: var(--text-muted); margin: 16px 0; }
.correction-note {
  margin-top: 20px;
  padding: 16px;
  background: rgba(108,92,231,0.08);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note-icon { font-size: 20px; flex-shrink: 0; }
.correction-note p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================
   TIMELINE
   ============================ */
.timeline { position: relative; max-width: 800px; margin: 0 auto 60px; }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), var(--accent2), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 45%;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item.right {
  margin-left: auto;
  transform: translateX(30px);
}
.timeline-item.right.visible { transform: translateX(0); }
.timeline-dot {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  top: 24px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.timeline-item:not(.right) .timeline-dot { right: -36px; }
.timeline-item.right .timeline-dot { left: -36px; }
.timeline-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s;
}
.timeline-card:hover { border-color: rgba(108,92,231,0.3); }
.timeline-hour { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.timeline-emoji { font-size: 28px; display: block; margin: 8px 0; }
.timeline-card h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 8px; }
.timeline-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.timeline-duration {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(108,92,231,0.1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

/* DAILY TOTAL */
.daily-total { text-align: center; }
.total-circle {
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  position: relative;
}
.total-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.total-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 6; }
.total-fill {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 6;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s ease-out;
}
.total-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.total-number { display: block; font-family: 'Space Grotesk'; font-size: 36px; font-weight: 700; color: white; }
.total-label { font-size: 13px; color: var(--text-muted); }
.total-desc { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ============================
   EVOLUTION
   ============================ */
.evolution-path { max-width: 800px; margin: 0 auto; }
.evo-month {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.evo-month.visible { opacity: 1; transform: translateY(0); }
.evo-month-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.evo-circle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.evo-circle span { font-family: 'Space Grotesk'; font-size: 24px; font-weight: 700; color: white; }
.evo-month-header h4 { font-size: 22px; font-weight: 700; color: white; }
.evo-content {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  margin-left: 28px;
  border-left: 3px solid var(--accent);
}
.evo-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; margin-bottom: 16px; }
.evo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.evo-fill.animated { width: var(--target-width); }
.evo-list { margin-bottom: 16px; }
.evo-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
}
.evo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent2);
}
.evo-quote {
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  padding: 12px 16px;
  background: rgba(108,92,231,0.06);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.evo-connector {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.connector-dots { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.connector-dots span {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}

/* DETAILS GRID - DURAÇÃO & CARGA HORÁRIA */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.detail-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: rgba(108,92,231,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.detail-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}
.detail-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.level-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.level-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.level-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
  flex: 1;
}
.level-time {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.detail-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}
.workload-item {
  margin-bottom: 8px;
}
.workload-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.workload-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
}
.workload-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.workload-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.workload-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease-out;
}
.workload-total {
  margin-top: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.06));
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: 12px;
}
.workload-total-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.workload-total-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.workload-total-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================
   TEAM
   ============================ */
.team-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.team-stat-card.visible { opacity: 1; transform: translateY(0); }
.team-stat-card:hover { transform: translateY(-4px); border-color: rgba(108,92,231,0.3); }
.ts-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.ts-number { display: block; font-family: 'Space Grotesk'; font-size: 32px; font-weight: 700; color: white; margin-bottom: 4px; }
.ts-label { font-size: 13px; color: var(--text-muted); }

/* ============================
   PRICING
   ============================ */
.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
.price-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--bg-card);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card.featured {
  background: linear-gradient(135deg, rgba(108,92,231,0.015), rgba(0,206,201,0.008));
  border-color: rgba(108,92,231,0.15);
  position: relative;
  transform: scale(1.04);
  z-index: 2;
}
.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}
.price-tag { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }
.price-value {
  font-family: 'Space Grotesk';
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.price-value span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.price-save { font-size: 12px; color: var(--accent2); margin-bottom: 24px; }
.price-features { margin-bottom: 24px; }
.price-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
}
.price-features li.positive { color: var(--text); }
.price-features li.negative { color: var(--text-muted); text-decoration: line-through; opacity: 0.6; }
.price-features li::before { position: absolute; left: 0; }
.price-features li.positive::before { content: '✓'; color: var(--green); }
.price-features li.negative::before { content: '✗'; color: var(--red); text-decoration: none; }
.price-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,184,148,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 20px;
}
.guarantee-icon { font-size: 18px; }
.price-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent), #8b7cf7);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.price-cta-annual {
  background: linear-gradient(135deg, var(--accent2), #00b894);
}
.price-cta-annual:hover {
  box-shadow: 0 8px 30px rgba(0,206,201,0.4);
}
.price-card.annual {
  background: linear-gradient(135deg, rgba(0,206,201,0.06), rgba(0,184,148,0.03));
  border-color: rgba(0,206,201,0.3);
}
.price-card.annual .price-save {
  color: var(--accent2);
  font-weight: 600;
}

/* PRICE PER DAY */
.price-perday {
  font-size: 13px;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

/* CTA BUTTON SHINE ANIMATION */
.price-cta {
  position: relative;
  overflow: hidden;
}
.price-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: ctaShine 3s ease-in-out infinite;
}
@keyframes ctaShine {
  0%, 70%, 100% { left: -100%; }
  85% { left: 150%; }
}

/* HIGHLIGHT FEATURE in price cards */
.highlight-feature {
  color: var(--accent2) !important;
  font-weight: 600;
}

/* LIFETIME CARD */
.lifetime-card {
  margin-top: 40px;
  padding: 40px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246,211,101,0.06), rgba(253,160,133,0.06));
  border: 1px solid rgba(246,211,101,0.3);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.lifetime-icon {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f6d365 0%, #e8b84b 25%, #ffd700 50%, #e8b84b 75%, #f6d365 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(255,215,0,0.5));
  text-shadow: none;
}
.lifetime-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}
.lifetime-title strong {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lifetime-desc {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* TRUST BADGES ROW */
.price-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.price-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.price-trust-item span:first-child {
  font-size: 18px;
}

/* ============================
   CTA FINAL
   ============================ */
.section-cta {
  background: linear-gradient(180deg, var(--bg-dark), #0d0d1a);
  text-align: center;
}
.cta-title {
  font-family: 'Space Grotesk';
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
.cta-desc { font-size: 17px; color: var(--text-muted); max-width: 550px; margin: 0 auto 36px; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), #8b7cf7);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px var(--accent-glow); }
.btn-arrow { font-size: 20px; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-secondary {
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(108,92,231,0.05); }
.cta-trust { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-trust span { font-size: 13px; color: var(--text-muted); }

/* ============================
   LIVE CLASS PREVIEW (ZOOM MOCKUP)
   ============================ */
.live-class-preview {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.live-class-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* ============================
   COMO FUNCIONA - 3 STEPS
   ============================ */
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

/* ============================
   VIDEO DEPOIMENTO
   ============================ */
.video-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.video-depoimento {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: white; }
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
/* FLASHCARD REAL IMAGE */
.fc-doctor-img {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  height: 100px !important;
}
.fc-real-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
}

/* ============================
   TESTIMONIALS / DEPOIMENTOS
   ============================ */
.section-testimonials {
  padding: 100px 0;
}
.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: -20px auto 32px;
  line-height: 1.7;
}
.testimonials-rating {
  text-align: center;
  margin-bottom: 48px;
}
.rating-stars {
  font-size: 28px;
  color: #fdcb6e;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.rating-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,92,231,0.3);
  box-shadow: 0 12px 40px rgba(108,92,231,0.1), 0 0 60px rgba(108,92,231,0.05);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  transition: left 0.8s ease;
}
.testimonial-card:hover::before {
  left: 150%;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.testimonial-stars {
  font-size: 13px;
  color: #fdcb6e;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(108,92,231,0.1);
  border: 1px solid rgba(108,92,231,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* ============================
   FAQ SECTION
   ============================ */
.section-faq {
  padding: 100px 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: rgba(108,92,231,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.faq-question:hover {
  background: rgba(255,255,255,0.02);
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--accent); }

/* ============================
   PREMIUM VISUAL EFFECTS
   ============================ */

/* FLOATING PARTICLES BACKGROUND */
.floating-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(108,92,231,0.4);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
.particle:nth-child(odd) {
  background: rgba(0,206,201,0.3);
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* SECTION TITLE SHIMMER EFFECT */
.section-label,
.pilar-number {
  position: relative;
  overflow: hidden;
}
.section-label::after,
.pilar-number::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmerText 4s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* ENHANCED ECOSYSTEM - GLOWING CORE */
.eco-core::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,92,231,0.3), transparent 70%);
  animation: coreGlow 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes coreGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0.9; }
}

/* ECOSYSTEM ORBIT TRAIL */
.eco-orbit::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(108,92,231,0.08);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(108,92,231,0.05);
}
.eco-orbit::after {
  content: '';
  position: absolute;
  inset: 120px;
  border: 1px dashed rgba(0,206,201,0.06);
  border-radius: 50%;
}

/* PLANET HOVER GLOW ENHANCED */
.eco-planet:hover .planet-icon {
  border-color: var(--accent2) !important;
  box-shadow: 0 0 30px rgba(0,206,201,0.4), 0 0 60px rgba(108,92,231,0.2) !important;
  background: rgba(108,92,231,0.15) !important;
}

/* TIMELINE FLOWING GRADIENT */
.timeline-line {
  background: linear-gradient(to bottom, transparent, var(--accent), var(--accent2), transparent) !important;
  overflow: hidden;
}
.timeline-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  animation: flowLine 3s linear infinite;
}
@keyframes flowLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* TIMELINE DOT PULSE */
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: dotPulse 2s ease-out infinite;
}
@keyframes dotPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* TIMELINE CARD HOVER GLOW */
.timeline-card {
  position: relative;
  overflow: hidden;
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108,92,231,0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}
.timeline-card:hover::before {
  opacity: 1;
}

/* PRICING CARD SHINE EFFECT */
.price-card {
  position: relative;
  overflow: visible;
}

/* FEATURED PRICE CARD GLOW */
.price-card.featured {
  box-shadow: 0 0 40px rgba(108,92,231,0.04), 0 8px 32px rgba(0,0,0,0.15);
}
.price-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent));
  background-size: 200% 200%;
  animation: borderGlow 4s ease-in-out infinite;
  z-index: -1;
  opacity: 0.08;
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* PRICE VALUE COUNTER GLOW */
.price-value {
  position: relative;
}
.price-card.featured .price-value {
  color: white;
}

/* POPULAR BADGE PULSE */
.price-popular {
  animation: popularPulse 2s ease-in-out infinite;
}
@keyframes popularPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,92,231,0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(108,92,231,0.2); }
}

/* TEAM STAT CARDS - HOVER GLOW + NUMBER SHINE */
.team-stat-card {
  position: relative;
  overflow: hidden;
}
.team-stat-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: radial-gradient(circle, rgba(108,92,231,0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.team-stat-card:hover::before {
  width: 300px;
  height: 300px;
}
.team-stat-card:hover .ts-number {
  background: linear-gradient(135deg, #fff, var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* WEEK CARDS - STAGGER + HOVER GLOW */
.week-card-v2 {
  position: relative;
  overflow: hidden;
}
.week-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  transition: left 0.6s ease;
}
.week-card-v2:hover::before {
  left: 100%;
}
.week-card-v2:hover {
  border-color: rgba(108,92,231,0.3) !important;
  box-shadow: 0 4px 20px rgba(108,92,231,0.1);
}

/* PILAR SECTION TITLE ANIMATED UNDERLINE */
.pilar-title {
  position: relative;
  display: inline-block;
}
.pilar-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 1s ease-out;
}
.pilar-section.visible .pilar-title::after {
  width: 60px;
}

/* FAQ ITEMS - SMOOTH GLOW */
.faq-item {
  position: relative;
  overflow: hidden;
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
  transition: height 0.4s ease;
}
.faq-item.open::before {
  height: 100%;
}

/* CTA BUTTONS - ENHANCED GLOW */
.cta-btn-final {
  position: relative;
  overflow: hidden;
}
.cta-btn-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.cta-btn-final:hover::before {
  width: 400px;
  height: 400px;
}

/* SCROLL HINT GLOW */
.scroll-hint {
  animation: scrollHintGlow 2s ease-in-out infinite;
}
@keyframes scrollHintGlow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50% { filter: drop-shadow(0 0 10px rgba(108,92,231,0.5)); }
}

/* GLASSMORPHISM SECTIONS */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,206,201,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.section {
  position: relative;
}
.section > * {
  position: relative;
  z-index: 1;
}

/* FEATURE CHECK ANIMATION */
.feature-check {
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover .feature-check {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0,184,148,0.4);
}

/* SMOOTH GLOW ON PILAR VISUAL ELEMENTS */
.schedule-mockup,
.phone-frame-v2,
.platform-v2-wrapper,
.plat-clean,
.flashcard-v2-wrapper,
.fc-showcase,
.correction-demo {
  transition: box-shadow 0.5s;
}
.schedule-mockup:hover,
.phone-frame-v2:hover,
.platform-v2-wrapper:hover,
.plat-clean:hover,
.flashcard-v2-wrapper:hover,
.fc-showcase:hover,
.correction-demo:hover {
  box-shadow: 0 8px 40px rgba(108,92,231,0.12), 0 0 80px rgba(108,92,231,0.05);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1200px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .problem-cards { grid-template-columns: 1fr; }
  .pilar-grid, .pilar-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .pilar-grid.reverse .pilar-visual { order: 2; }
  .pilar-grid.reverse .pilar-info { order: 1; }
  .pricing-comparison { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-visual { width: 320px; height: 320px; }
  .eco-core { width: 70px; height: 70px; }
  .eco-planet { width: 80px; }
  .planet-icon { width: 44px; height: 44px; font-size: 18px; }
  .planet-label { font-size: 10px; }
  .hero-stats { gap: 30px; }
  .stat-number { font-size: 24px; }
  .hero-subtitle { font-size: 16px; }
  .timeline-item, .timeline-item.right { width: 80%; margin-left: 20%; }
  .timeline-line { left: 10%; }
  .timeline-item:not(.right) .timeline-dot,
  .timeline-item.right .timeline-dot { left: -36px; right: auto; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    animation: slideDown 0.3s ease-out;
  }
  .nav-links.mobile-open a { font-size: 16px; padding: 8px 0; }
  .nav-links.mobile-open .nav-cta { text-align: center; padding: 12px 20px; }
  .hamburger { display: flex !important; }
  .phone-mockup { width: 280px; }
  .platform-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .plat-clean { padding: 20px; }
  .plat-stats-grid { gap: 8px; }
  .plat-stat-big { font-size: 22px; }
  .phone-frame-v2 { width: 300px; }
  .fc-showcase { max-width: 340px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* HERO mobile */
  .hero {
    min-height: auto;
    padding: 40px 16px 30px;
  }
  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    flex-direction: row;
    gap: 24px;
    margin-top: 30px;
    justify-content: center;
    width: 100%;
    opacity: 1;
    animation: none;
  }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 10px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: 15px; margin-bottom: 16px; }
  .hero-scroll-hint { display: none; }
  .hero-logo-real { width: 70px; height: 70px; }
  .hero-logo-text { font-size: 15px; }
  .hero-badge { font-size: 10px; padding: 4px 12px; margin-bottom: 20px; }

  /* SECTIONS mobile */
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-overline { font-size: 11px; }
  .container { padding: 0 16px; }
  .pilar-number { font-size: 40px; }
  .pilar-title { font-size: 20px; }
  .pilar-desc { font-size: 14px; }
  .big-statement { font-size: 1.3rem; }

  /* PROBLEM CARDS mobile */
  .problem-card { padding: 18px; }
  .problem-card h4 { font-size: 15px; }

  /* TIMELINE mobile */
  .timeline-item, .timeline-item.right { width: 100%; margin-left: 0; padding-left: 30px; }
  .timeline-line { left: 6px; }
  .timeline-item:not(.right) .timeline-dot,
  .timeline-item.right .timeline-dot { left: -6px; }
  .timeline-card { padding: 16px; }
  .timeline-card h4 { font-size: 15px; }
  .timeline-card p { font-size: 13px; }

  /* TEAM STATS mobile */
  .team-stats { grid-template-columns: 1fr; }

  /* STEPS mobile */
  .steps-row { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); font-size: 22px; }
  .step-card { max-width: 100%; min-width: auto; padding: 24px 16px; }

  /* VIDEO mobile */
  .video-wrapper { margin: 24px auto 0; }

  /* FOOTER mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* FEATURED SCALE mobile */
  .price-card.featured { transform: scale(1); }

  /* PLATFORM CLEAN mobile */
  .plat-clean { padding: 16px; }
  .plat-main-title { font-size: 16px; }
  .plat-stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .plat-stat-big { font-size: 22px; }
  .plat-stat-icon { font-size: 18px; }
  .plat-stat-card { padding: 12px 6px; }
  .plat-mod-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .plat-mod-header h5 { font-size: 14px; }
  .plat-mod-topics { font-size: 11px; }
  .plat-timeline { padding-left: 16px; }

  /* FLASHCARD mobile */
  .fc-showcase { max-width: 100%; }
  .fc-main-inner { min-height: 280px; }
  .fc-main-phrase { font-size: 18px; }
  .fc-stats-row { gap: 6px; }
  .fc-stat-num { font-size: 15px; }
  .fc-stat-pill { padding: 8px 4px; }
  .fc-back-img { height: 80px; }
  .fc-rate-btn { padding: 8px 4px; }
  .fc-rate-btn span { font-size: 14px; }
  .fc-rate-btn strong { font-size: 10px; }
  .fc-rate-btn small { font-size: 10px; }

  /* CORRECTION mobile */
  .correction-demo { padding: 16px; }

  /* TESTIMONIALS mobile */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 18px; }
  .testimonial-text { font-size: 13px; }
  .audio-btn { font-size: 12px; padding: 8px 12px; }

  /* PRICING mobile */
  .pricing-grid-4 { gap: 16px; }
  .price-card { padding: 24px; }
  .price-value { font-size: 32px; }
  .price-anchor { flex-direction: column; gap: 12px; }
  .price-anchor-vs { margin: 0; }
  .price-anchor-item { padding: 16px; }
  .price-anchor-value { font-size: 20px; }
  .price-anchor-label { font-size: 13px; }
  .price-anchor-detail { font-size: 11px; }

  /* TRUST BADGES mobile */
  .price-trust-row { gap: 16px; }
  .price-trust-item { font-size: 11px; }

  /* CTA mobile */
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .mid-cta-buttons { flex-direction: column; align-items: center; }

  /* FAQ mobile */
  .faq-question h4 { font-size: 14px; }

  /* ECOSYSTEM mobile */
  .ecosystem-visual { width: 260px; height: 260px; }

  /* WHATSAPP mobile */
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-message { right: 70px; bottom: 8px; font-size: 12px; }

  /* SCHEDULE TABLE mobile - compacta */
  .schedule-mockup { max-width: 100%; }
  .schedule-table-v2 { padding: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .schedule-table-v2 table { font-size: 8px; min-width: 420px; }
  .schedule-table-v2 thead th { padding: 5px 2px; font-size: 8px; }
  .schedule-table-v2 tbody td { padding: 4px 2px; min-width: 55px; }
  .slot-time { font-size: 8px; }
  .slot-info { font-size: 7px; }
  .slot-note { font-size: 7px; }
  .slot-active { padding: 4px 2px; }
  .mockup-header span { font-size: 10px; }
  .mockup-badge { font-size: 10px; padding: 8px; }
  .live-class-preview { margin-top: 12px; }
  .live-class-img { max-width: 100%; height: auto; border-radius: 12px; }

  /* PHONE FRAME (Central de Atividades) mobile */
  .phone-mockup { width: 220px; }
  .phone-frame-v2 { width: 100%; max-width: 300px; border-radius: 24px; padding: 8px; }
  .phone-notch-v2 { width: 80px; height: 18px; }
  .app-header-v2 { padding: 12px; }
  .app-title-v2 { font-size: 14px; }
  .app-subtitle-v2 { font-size: 11px; }
  .app-label-v2 { font-size: 8px; }
  .act-item-v2 { padding: 8px; }
  .act-info-v2 strong { font-size: 12px; }
  .act-info-v2 small { font-size: 9px; }

  /* PILAR VISUAL container */
  .pilar-visual { max-width: 100%; overflow: hidden; }

  /* GENERAL overflow protection */
  .hero-content,
  .section,
  .container { max-width: 100%; overflow-x: hidden; }
}

@media (max-width: 380px) {
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 18px; }
  .hero-title { font-size: 1.6rem; }
  .fc-stats-row { flex-wrap: wrap; }
  .fc-stat-pill { min-width: calc(50% - 4px); }
  .plat-stats-grid { grid-template-columns: 1fr; }
  .fc-main-phrase { font-size: 16px; }
  .section-title { font-size: 1.3rem; }
  .pilar-title { font-size: 18px; }
}

/* ============================
   HAMBURGER MENU
   ============================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   CTA INTERMEDIÁRIO
   ============================ */
.section-mid-cta {
  padding: 70px 0;
  background: linear-gradient(180deg, #0d0d14, rgba(108,92,231,0.06), #0a0a0f);
  border-top: 1px solid rgba(108,92,231,0.15);
  border-bottom: 1px solid rgba(108,92,231,0.15);
}
.mid-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), #8b7cf7);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-arrow { font-size: 18px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent); color: white; background: rgba(108,92,231,0.08); }

/* ============================
   PRICE ANCHOR
   ============================ */
.price-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.price-anchor-item { text-align: center; flex: 1; }
.price-anchor-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.price-anchor-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.price-anchor-value.crossed {
  color: var(--red);
  text-decoration: line-through;
  opacity: 0.7;
}
.price-anchor-detail {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.price-anchor-item.highlight .price-anchor-value {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-anchor-vs {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============================
   URGENCY BADGE
   ============================ */
.urgency-badge {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.25);
  color: #ff8a8a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
  text-align: center;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================
   WHATSAPP FLOAT - ENHANCED
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-message {
  position: absolute;
  right: 66px;
  bottom: 4px;
  background: white;
  color: #333;
  padding: 10px 16px;
  border-radius: 12px 12px 0 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(10px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.whatsapp-message.show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

/* ============================
   AUDIO PLAYER BUTTON
   ============================ */
.audio-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.25);
  color: var(--accent2);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  margin: 16px 0 12px;
  position: relative;
  overflow: hidden;
  width: fit-content;
}
.audio-btn:hover {
  background: rgba(0, 206, 201, 0.15);
  border-color: rgba(0, 206, 201, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 206, 201, 0.15);
}
.audio-btn.playing {
  border-color: var(--accent2);
  background: rgba(0, 206, 201, 0.12);
  box-shadow: 0 0 20px rgba(0, 206, 201, 0.15);
}
.audio-btn svg {
  flex-shrink: 0;
}
.audio-label {
  white-space: nowrap;
}
.audio-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 206, 201, 0.1);
  border-radius: 0 0 50px 50px;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 0 0 50px 50px;
  transition: width 0.15s linear;
}
.audio-btn.playing .audio-icon-play { display: none; }
.audio-btn.playing .audio-icon-pause { display: inline !important; }


/* ============================================
   MELHORIAS DE CONVERSÃO — NOVOS COMPONENTES
   ============================================ */

/* ANNOUNCEMENT BANNER */
.announcement-banner {
  background: linear-gradient(90deg, #6c5ce7, #00cec9);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  position: relative;
  z-index: 1001;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55efc4;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.announcement-text { font-weight: 400; }
.announcement-cta {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.announcement-cta:hover { background: rgba(255,255,255,0.35); }
.announcement-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 0 4px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .announcement-text { font-size: 0.78rem; }
  .announcement-close { position: static; transform: none; }
}

/* PILHA DE VALOR */
.value-stack {
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.08));
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.value-stack-title {
  color: #a8a8c0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.value-stack-list { display: flex; flex-direction: column; gap: 10px; }
.value-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.vs-check { color: #00cec9; font-size: 1rem; flex-shrink: 0; }
.vs-desc { flex: 1; color: #d0d0e8; }
.vs-price { color: #a0a0c0; font-size: 0.82rem; white-space: nowrap; text-align: right; }
.value-stack-total {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vs-total-label { color: #a8a8c0; font-size: 0.85rem; margin-right: auto; }
.vs-total-crossed { color: #888; text-decoration: line-through; font-size: 1rem; }
.vs-total-real { color: #55efc4; font-size: 1.05rem; font-weight: 700; }
@media (max-width: 600px) {
  .value-stack { padding: 20px; }
  .value-stack-item { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* COUNTDOWN + VAGAS */
.urgency-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.countdown-wrapper { flex: 1; min-width: 200px; }
.countdown-label { font-size: 0.82rem; color: #a8a8c0; margin-bottom: 12px; }
.countdown-timer { display: flex; gap: 8px; align-items: center; }
.countdown-unit {
  background: rgba(108,92,231,0.2);
  border: 1px solid rgba(108,92,231,0.4);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  min-width: 52px;
}
.countdown-unit span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.countdown-unit small {
  font-size: 0.65rem;
  color: #a8a8c0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-sep { font-size: 1.4rem; font-weight: 700; color: #6c5ce7; margin-bottom: 14px; }
.slots-wrapper { flex: 1.2; min-width: 220px; }
.slots-title { font-size: 0.82rem; color: #a8a8c0; margin-bottom: 12px; }
.slot-bar-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.slot-bar-name { font-size: 0.78rem; color: #c0c0d8; min-width: 180px; flex: 1; }
.slot-bar-track {
  width: 80px; height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden; flex-shrink: 0;
}
.slot-bar-fill { height: 100%; background: linear-gradient(90deg, #6c5ce7, #00cec9); border-radius: 4px; }
.slot-bar-fill.slot-bar-critical { background: linear-gradient(90deg, #e17055, #fd79a8); }
.slot-bar-fill.slot-bar-full { background: #636e72; }
.slot-bar-count { font-size: 0.75rem; color: #a8a8c0; white-space: nowrap; }
.slot-bar-count.slot-critical { color: #e17055; font-weight: 600; }
.slot-bar-count.slot-full { color: #636e72; }
@media (max-width: 700px) {
  .urgency-block { flex-direction: column; padding: 20px; gap: 24px; }
  .countdown-unit { min-width: 42px; padding: 6px 8px; }
  .countdown-unit span { font-size: 1.2rem; }
}

/* TESTIMONIAL META */
.testimonial-meta {
  font-size: 0.75rem;
  color: #a8a8c0;
  margin-bottom: 4px;
  font-weight: 400;
}

/* JORNADA 90 DIAS */
.journey-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 48px 0 32px;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
.journey-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.journey-icon { font-size: 2.2rem; margin-bottom: 8px; }
.journey-week {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c5ce7;
  font-weight: 700;
  margin-bottom: 8px;
}
.journey-title { font-size: 0.92rem; font-weight: 700; color: #e0e0f0; margin-bottom: 8px; }
.journey-desc { font-size: 0.78rem; color: #a8a8c0; line-height: 1.5; }
.journey-arrow {
  font-size: 1.8rem;
  color: rgba(108,92,231,0.4);
  padding: 24px 4px 0;
  flex-shrink: 0;
  align-self: flex-start;
}
.journey-disclaimer { font-size: 0.72rem; color: #666; text-align: center; font-style: italic; }
@media (max-width: 700px) {
  .journey-arrow { display: none; }
  .journey-timeline { gap: 12px; }
  .journey-step { min-width: 140px; }
}

/* PILAR CTA ROW */
.pilar-cta-row { text-align: center; padding: 16px 0 32px; }
.pilar-cta-link {
  color: #a29bfe;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(162,155,254,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pilar-cta-link:hover { color: #6c5ce7; border-color: #6c5ce7; }

/* STICKY CTA BAR */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0d0d1a, #1a1030);
  border-top: 1px solid rgba(108,92,231,0.4);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.sticky-cta-info { display: flex; align-items: center; gap: 12px; }
.sticky-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.sticky-text { font-size: 0.88rem; color: #c0c0d8; }
.sticky-cta-btn {
  background: linear-gradient(135deg, #6c5ce7, #00cec9);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.sticky-cta-btn:hover { opacity: 0.9; transform: scale(1.02); }
@media (max-width: 500px) {
  .sticky-text { font-size: 0.75rem; }
  .sticky-cta-btn { padding: 8px 16px; font-size: 0.8rem; }
}

/* ============================
   EXIT INTENT POPUP — v2 PREMIUM
   ============================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.exit-popup-card {
  background: #0f0f1a;
  border: 1px solid rgba(108,92,231,0.25);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(108,92,231,0.1), 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(108,92,231,0.15);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.exit-popup-overlay.active .exit-popup-card {
  transform: translateY(0) scale(1);
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ── Header ── */
.exit-popup-header {
  position: relative;
  padding: 36px 32px 28px;
  background: linear-gradient(135deg, #1a0e3a 0%, #0e1f3a 60%, #071830 100%);
  overflow: hidden;
}
.exit-popup-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(108,92,231,0.35) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 100%, rgba(0,206,201,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.exit-popup-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.5), rgba(0,206,201,0.3), transparent);
}
/* Estrelinhas decorativas */
.exit-popup-header-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.exit-popup-header-stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: starTwinkle 3s infinite;
}
.exit-popup-header-stars span:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; }
.exit-popup-header-stars span:nth-child(2) { top: 25%; left: 80%; animation-delay: 0.7s; }
.exit-popup-header-stars span:nth-child(3) { top: 60%; left: 88%; animation-delay: 1.4s; width: 2px; height: 2px; }
.exit-popup-header-stars span:nth-child(4) { top: 70%; left: 5%; animation-delay: 2.1s; width: 2px; height: 2px; }
.exit-popup-header-stars span:nth-child(5) { top: 45%; left: 50%; animation-delay: 0.4s; }
@keyframes starTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1); }
}
.exit-popup-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,107,107,0.12);
  border: 1px solid rgba(255,107,107,0.35);
  color: #ff8585;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  position: relative;
}
.exit-popup-live-dot {
  width: 7px;
  height: 7px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: popupPulse 1.2s infinite;
}
@keyframes popupPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,107,0.5); }
  50% { opacity: 0.7; transform: scale(0.8); box-shadow: 0 0 0 4px rgba(255,107,107,0); }
}
.exit-popup-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -0.02em;
}
.exit-popup-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  position: relative;
}
.exit-popup-sub strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── Body ── */
.exit-popup-body {
  padding: 24px 32px 30px;
}
.exit-popup-time-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.06));
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
}
.exit-popup-time-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.exit-popup-time-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #a29bfe, #00cec9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-popup-fields-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.exit-popup-fields-row input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.93rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.exit-popup-fields-row input:focus {
  border-color: rgba(108,92,231,0.6);
  background: rgba(108,92,231,0.06);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.12);
}
.exit-popup-fields-row input::placeholder { color: rgba(255,255,255,0.3); }
.exit-popup-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
}
.exit-popup-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.exit-popup-consent span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.45;
}
.exit-popup-btn {
  width: 100%;
  background: linear-gradient(135deg, #7c6df0 0%, #5a4fcf 50%, #4a42b0 100%);
  border: none;
  border-radius: 14px;
  padding: 16px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(108,92,231,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.exit-popup-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.exit-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,92,231,0.6), inset 0 1px 0 rgba(255,255,255,0.15); }
.exit-popup-btn:active { transform: translateY(0); }
.exit-popup-btn svg { flex-shrink: 0; }
.exit-popup-free-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}
/* ── Success ── */
.exit-popup-success {
  text-align: center;
  padding: 16px 0 8px;
}
.exit-popup-success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0,184,148,0.2), rgba(0,206,201,0.1));
  border: 1px solid rgba(0,184,148,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #00b894;
  margin: 0 auto 18px;
}
.exit-popup-success-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.exit-popup-success-sub { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.5; }

@media (max-width: 520px) {
  .exit-popup-header { padding: 28px 22px 22px; }
  .exit-popup-body { padding: 20px 22px 24px; }
  .exit-popup-title { font-size: 1.4rem; }
  .exit-popup-time-value { font-size: 1.2rem; }
}

/* ============ BOTÃO CURIOSIDADE (mid-cta) ============ */
.btn-curiosity {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding: 14px 28px;
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.25);
  color: #00cec9;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.btn-curiosity:hover {
  background: rgba(0, 206, 201, 0.15);
  border-color: rgba(0, 206, 201, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 206, 201, 0.2);
  color: #00cec9;
}

/* ============ SEÇÃO CURIOSIDADE MATEMÁTICA (entre FAQ e CTA) ============ */
.section-math-curiosity {
  padding: 60px 0;
  background: linear-gradient(180deg, #0a0a0f, rgba(0,206,201,0.04), #0d0d1a);
}
.math-curiosity-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(0,206,201,0.15);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.math-curiosity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.math-curiosity-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,206,201,0.1);
  border: 1px solid rgba(0,206,201,0.2);
  border-radius: 20px;
  font-size: 12px;
  color: #00cec9;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.math-curiosity-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 16px;
}
.math-curiosity-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.btn-math-curiosity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-math-curiosity:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,206,201,0.3);
  color: white;
}
@media (max-width: 600px) {
  .math-curiosity-card {
    padding: 32px 24px;
  }
}
