/* Importação das fontes Poppins e Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Variáveis de Estilo - Inspiradas em Apple, Stripe, Linear, Aceternity */
:root {
  --primary: #9B7BFF;       /* Roxo Claro de Luxo */
  --primary-rgb: 155, 123, 255;
  --primary-hover: #8660FF;
  --accent: #FFD6E7;
  --accent-rgb: 255, 214, 231;
  --accent-dark: #FF85BA;   /* Rosa destaque */
  
  /* --- PREMIUM DARK MODE VARIABLES --- */
  --bg: #0B0816;            /* Background Principal Roxo Escuro quase preto */
  --bg-secondary: #120F26;  /* Background Secundário */
  --card-bg: rgba(26, 22, 48, 0.6); /* Cards Translúcidos Escuros */
  --border-color: rgba(155, 123, 255, 0.15); /* Bordas discretas roxas */
  
  --text-main: #FFFFFF;     /* Texto Principal Branco */
  --text-secondary: #C0B7DC;/* Texto Secundário Lilás Pastel */
  --text-light: #9B8DBA;    /* Textos discretos */
  
  --shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 30px 60px -15px rgba(155, 123, 255, 0.15);
  
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

/* Reset Geral */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #CBC4E3;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A89EC9;
}

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

/* 🧬 Fundo Fixo Premium - Estilo Aceternity / Magic UI (Aurora Mesh + Grade de Pontos) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(155, 123, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(255, 133, 186, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(155, 123, 255, 0.08) 0%, transparent 40%),
    radial-gradient(rgba(155, 123, 255, 0.06) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 24px 24px;
  z-index: -2;
  pointer-events: none;
}

/* 💎 Efeito de Spotlight do Hero */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% -20%, rgba(155, 123, 255, 0.15) 0%, rgba(255, 214, 231, 0.1) 30%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* 🚀 Floating Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(9, 6, 21, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 14px 24px;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(9, 6, 21, 0.95);
  box-shadow: 0 10px 30px rgba(155, 123, 255, 0.08);
  padding: 10px 24px;
}
.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
}
.logo-img {
  height: 38px;
  width: 38px;
  border-radius: 8px;
  object-fit: cover;
}
.logo-text {
  letter-spacing: -0.5px;
}

/* Menu de links */
.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-menu-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link-login {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-link-login:hover {
  color: var(--primary);
}

/* Botão com efeito Shiny */
.nav-btn-premium {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
  border: none;
  cursor: pointer;
  overflow: hidden;
}
.nav-btn-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}
.nav-btn-premium:hover::after {
  left: 125%;
}
.nav-btn-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.5);
}
.nav-btn-desktop,
.nav-login-desktop {
  display: inline;
}
.nav-btn-mobile,
.nav-login-mobile {
  display: none;
}

/* 🎬 SEÇÃO 1: HERO */
.hero-section {
  width: 100%;
  max-width: 100%;
  padding: 120px 0 80px 0;
  position: relative;
  z-index: 10;
}
.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

/* Slideshow automático de fundo */
.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 0.18; /* Opacidade bem discreta para não atrapalhar a legibilidade */
}

.badge-clinic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 79, 160, 0.08);
  border: 1px solid rgba(255, 79, 160, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-headline {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

/* 🌈 Aurora Text (Efeito de cores animado) */
.aurora-text {
  background: linear-gradient(90deg, #9B7BFF 0%, #FF85BA 35%, #9B7BFF 70%, #FF85BA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aurora-text-shift 6s linear infinite;
}
@keyframes aurora-text-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subheadline {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-btn-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* Botão principal com brilho */
.btn-main-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 99px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn-main-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}
.btn-main-glow:hover::after {
  left: 125%;
}
.btn-main-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(var(--primary-rgb), 0.5);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(155, 123, 255, 0.25);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-secondary-outline:hover {
  background: rgba(155, 123, 255, 0.05);
  border-color: var(--primary);
}

/* Smartphone Mockup com efeito flutuante (Float) e Fade */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.smartphone-mockup-glass {
  width: 290px;
  height: 590px;
  background: #FAF8FF;
  border: 10px solid #1E1B29;
  border-radius: 40px;
  box-shadow: 0 30px 100px rgba(155, 123, 255, 0.12), 0 0 40px rgba(155, 123, 255, 0.06);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 20px;
  background: #1E1B29;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}
.phone-iframe-mock {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--bg);
}

/* 🛡️ SEÇÃO: SELOS DE CONFIANÇA */
.trust-badges-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  background: rgba(26, 22, 48, 0.3);
}
.trust-badges-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px;
}
.trust-badge-item {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-badge-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* 🏷️ LAYOUT GLOBAL DE SEÇÕES */
section {
  padding: 100px 24px;
  position: relative;
  z-index: 10;
}
.section-dark {
  background-color: transparent;
}
.section-dark-secondary {
  background-color: rgba(255, 255, 255, 0.015);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 🚨 SEÇÃO 2: PROBLEMA (Antes/Depois Slider Interativo) */
.problem-compare-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

/* 🧬 Compare Slider - Aceternity Style */
.compare-slider-container {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-hover);
  user-select: none;
  -webkit-user-select: none;
}
.compare-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-img-after {
  z-index: 1;
}
.compare-img-before {
  z-index: 2;
  /* Controlado dinamicamente via JS (ex: clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%)) */
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.compare-label {
  position: absolute;
  bottom: 24px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 4;
}
.compare-label.before {
  left: 24px;
}
.compare-label.after {
  right: 24px;
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #FFFFFF;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
.compare-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #2A1B4E;
  pointer-events: none;
}

/* 🛠️ SEÇÃO 3: COMO FUNCIONA (Timeline Aceternity) */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
/* Linha vertical esquerda */
.timeline-track-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(155, 123, 255, 0.2);
  z-index: 1;
}
.timeline-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%; /* Cresce no scroll via JS */
  background: linear-gradient(to bottom, var(--primary) 0%, var(--accent-dark) 100%);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
  transition: height 0.1s ease;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
  padding-left: 56px;
  z-index: 2;
}

.timeline-node {
  position: absolute;
  top: 10px;
  left: 20px;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid rgba(155, 123, 255, 0.25);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  z-index: 5;
  transition: all 0.3s ease;
}
.timeline-item.active .timeline-node {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.5);
}

.timeline-content-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.timeline-content {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.timeline-item.active .timeline-content {
  border-color: rgba(155, 123, 255, 0.25);
}
.timeline-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(155, 123, 255, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.timeline-content h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.timeline-empty-side {
  visibility: hidden; /* Mantém o grid perfeitamente simétrico */
}

/* 📦 BENTO GRID (Benefícios e Diferenciais) */
.bento-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 160, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 79, 160, 0.05);
}
.bento-card-span-2 {
  grid-column: span 2;
}
.bento-card-span-3 {
  grid-column: span 3;
}

.bento-icon-container {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 79, 160, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-card h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.bento-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Efeito de borda luminosa (Border Beam) que corre ao redor do card no hover */
.border-beam-container {
  position: relative;
}
.border-beam-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(to right, var(--primary), var(--accent), transparent, transparent, var(--primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  background-size: 200% 200%;
  animation: border-beam-anim 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.border-beam-container:hover::after {
  opacity: 1;
}
@keyframes border-beam-anim {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* 👥 SEÇÃO 4: DEPOIMENTOS (Infinite Moving Cards Marquee) */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}
.marquee-container {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  width: max-content;
}
.marquee-content {
  display: flex;
  gap: 24px;
  animation: marquee-anim 35s linear infinite;
}
.marquee-content.reverse {
  animation: marquee-anim 35s linear infinite reverse;
}
@keyframes marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 320px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  flex-shrink: 0;
}
.stars-row {
  color: #FACC15; /* Amarelo */
  margin-bottom: 12px;
  font-size: 14px;
}
.testimonial-text {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 75px;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}
.testimonial-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}
.testimonial-title {
  font-size: 10px;
  color: var(--text-light);
}

/* 📊 SEÇÃO: ESTATÍSTICAS (Number Ticker) */
.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-card {
  background: rgba(17, 17, 19, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 20px;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E2E2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* 📱 SEÇÃO: MOCKUP PREMIUM GIGANTE (Dentro do App Showcase) */
.showcase-mockup-wrapper {
  max-width: 950px;
  margin: 40px auto 0 auto;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}
.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 20px 16px;
  border-bottom: 1px solid var(--border-color);
}
.showcase-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.showcase-dots {
  display: flex;
  gap: 6px;
}
.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.showcase-dot.red { background: #FF5F56; }
.showcase-dot.yellow { background: #FFBD2E; }
.showcase-dot.green { background: #27C93F; }

.showcase-title {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-light);
}
.showcase-nav-btn {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 79, 160, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
  text-decoration: none;
}
.showcase-nav-btn:hover {
  background: rgba(255, 79, 160, 0.15);
}

.showcase-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 480px;
}
.showcase-sidebar {
  border-right: 1px solid var(--border-color);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.showcase-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.showcase-sidebar-item.active,
.showcase-sidebar-item:hover {
  background: rgba(255, 79, 160, 0.06);
  color: var(--primary);
}
.showcase-sidebar-item svg {
  flex-shrink: 0;
}

.showcase-content-pane {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.02) 0%, transparent 80%);
}
.showcase-frame-container {
  width: 100%;
  max-width: 580px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}
.showcase-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--bg);
}

/* 💳 SEÇÃO 5: PLANOS (Redesenhada no Tema Escuro) */
.plans-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.plan-card-dark {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 44px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.plan-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 160, 0.2);
}
.plan-card-dark.premium {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 40px rgba(255, 79, 160, 0.15);
}

.plans-promo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(255, 79, 160, 0.3);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-card-header {
  margin-bottom: 24px;
}
.plan-card-name {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}
.plan-card-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-card-currency {
  font-size: 18px;
  font-weight: 700;
}
.plan-card-price {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.plan-card-period {
  font-size: 13.5px;
  color: var(--text-light);
  font-weight: 600;
}
.plan-card-helper {
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  background: rgba(255, 79, 160, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 8px;
}
.plan-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 30px;
  min-height: 60px;
}

.plan-card-features-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text-main);
}
.plan-card-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex-grow: 1;
}
.plan-card-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.plan-card-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Botão do plano com efeito de brilho */
.plan-card-cta-btn {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-family: var(--font-title);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.plan-card-cta-btn.regular {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.plan-card-cta-btn.regular:hover {
  background: rgba(255, 255, 255, 0.15);
}
.plan-card-cta-btn.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}
.plan-card-cta-btn.highlight:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.55);
}

/* 🛡️ SEÇÃO: GARANTIA */
.guarantee-box-premium {
  max-width: 800px;
  margin: 40px auto 0 auto;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(255, 79, 160, 0.03) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.guarantee-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 79, 160, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-text h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.guarantee-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ❓ SEÇÃO: FAQ ACCORDION MODERNO */
.faq-accordion-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion-item {
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-accordion-header {
  padding: 20px 24px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 700;
}
.faq-accordion-header:hover {
  color: var(--primary);
}
.faq-icon-arrow {
  transition: transform 0.3s ease;
  color: var(--text-light);
}
.faq-accordion-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-accordion-item.active .faq-accordion-body {
  padding-bottom: 20px;
}

/* 📣 SEÇÃO: CTA FINAL */
.final-cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 79, 160, 0.05) 0%, transparent 70%);
}
.btn-cta-giant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  font-size: 17px;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-cta-giant:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.6);
}

/* 👣 FOOTER */
.footer-dark {
  border-top: 1px solid var(--border-color);
  background: #060608;
  padding: 60px 24px 30px 24px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-desc {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-light);
}
.footer-social-row {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  color: var(--text-light);
  transition: color 0.2s ease;
}
.footer-social-link:hover {
  color: var(--primary);
}

/* 📱 RESPONSIVIDADE MOBILE-FIRST */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-btn-group {
    justify-content: center;
  }
  .hero-headline {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .bento-grid-3 {
    grid-template-columns: 1fr;
  }
  .bento-card-span-2 {
    grid-column: span 1;
  }
  .bento-card-span-3 {
    grid-column: span 1;
  }
  .showcase-body {
    grid-template-columns: 1fr;
  }
  .showcase-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    overflow-x: auto;
    padding: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .showcase-sidebar-item {
    white-space: nowrap;
    padding: 8px 14px;
  }
  .showcase-content-pane {
    padding: 16px;
  }
  .showcase-frame-container {
    height: 300px;
  }
  .plans-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-track-line {
    left: 20px;
  }
  .timeline-node {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 48px;
  }
  .timeline-item:nth-child(even) {
    direction: ltr;
  }
  .timeline-item:nth-child(even) .timeline-content-wrapper {
    justify-content: flex-start;
  }
  .timeline-content-wrapper {
    justify-content: flex-start;
  }
  .timeline-content {
    max-width: 100%;
  }
  .timeline-empty-side {
    display: none;
  }
  .compare-slider-container {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 12px;
  }
  .logo-text {
    display: none !important;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-btn-premium {
    font-size: 11px;
    padding: 6px 14px;
  }
  .nav-btn-desktop,
  .nav-login-desktop {
    display: none;
  }
  .nav-btn-mobile,
  .nav-login-mobile {
    display: inline;
  }
  .nav-menu-links {
    display: none; /* Oculta links no celular em prol da área clinica e hambúrguer */
  }
  .stats-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .guarantee-box-premium {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .guarantee-icon-box {
    margin: 0 auto;
  }
  .section-title {
    font-size: 28px;
  }
  .hero-mockup-wrapper {
    margin-top: 20px;
  }
  .smartphone-mockup-glass {
    width: 250px;
    height: 500px;
  }
  .simulated-desktop-container {
    padding: 12px;
    gap: 12px;
  }
  .simulated-desktop-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-btn-group {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .btn-main-glow,
  .btn-secondary-outline {
    width: 100%;
    padding: 14px 20px;
  }
  .stats-grid-4 {
    grid-template-columns: 1fr;
  }
  .compare-slider-container {
    height: 250px;
  }
  .simulated-calendar-grid {
    gap: 4px;
  }
  .simulated-calendar-day {
    padding: 6px 2px;
    font-size: 9.5px;
    border-radius: 6px;
  }
}

/* Simulated App UI (Hero Mockup) */
.simulated-app-container {
  width: 100%;
  height: 100%;
  background: #FAF8FF;
  padding: 30px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  font-family: var(--font-body);
  color: #2A1B4E;
}
.simulated-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.simulated-app-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  color: #2A1B4E;
}
.simulated-app-logo img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.simulated-app-profile-badge {
  font-size: 9px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.simulated-app-card {
  background: #FFFFFF;
  border: 1px solid rgba(155, 123, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(155, 123, 255, 0.04);
}
.simulated-card-title {
  font-size: 11px;
  font-weight: 700;
  color: #6B5C8E;
}
.simulated-card-value-high {
  font-size: 14px;
  font-weight: 900;
  color: var(--primary-hover);
}
.simulated-progress-bar-container {
  background: rgba(155, 123, 255, 0.08);
  height: 6px;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.simulated-progress-bar-fill {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-dark) 100%);
  height: 100%;
  border-radius: 99px;
}
.simulated-card-subtitle {
  font-size: 10px;
  color: #8C7FA6;
  font-weight: 500;
}
.simulated-card-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.simulated-icon {
  font-size: 18px;
}
.simulated-task-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #2A1B4E;
}
.simulated-task-desc {
  font-size: 9.5px;
  color: #6B5C8E;
}
.simulated-task-btn {
  width: 100%;
  background: rgba(155, 123, 255, 0.06);
  color: var(--primary-hover);
  border: 1px solid rgba(155, 123, 255, 0.15);
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
}
.simulated-scanner-box {
  background: #000000;
  height: 80px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin: 8px 0;
}
.simulated-scanner-hair {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(155, 123, 255, 0.2) 10%, transparent 80%), url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?q=80&w=200');
  background-size: cover;
  background-position: center;
}
.simulated-scanner-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: scan-anim 2s linear infinite;
}
@keyframes scan-anim {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}
.chat-balloon.assistant {
  background: rgba(155, 123, 255, 0.06);
  border-radius: 12px;
  padding: 8px 10px;
}
.chat-balloon.assistant p {
  font-size: 10px;
  line-height: 1.4;
  color: #2A1B4E;
}

/* Simulated App UI (Desktop Showcase) */
.simulated-desktop-container {
  width: 100%;
  height: 100%;
  background: #FAF8FF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
  color: #2A1B4E;
  overflow-y: auto;
}
.simulated-desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(155, 123, 255, 0.1);
  padding-bottom: 14px;
}
.simulated-desktop-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: #2A1B4E;
}
.simulated-desktop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.simulated-desktop-card {
  background: #FFFFFF;
  border: 1px solid rgba(155, 123, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(155, 123, 255, 0.03);
}
.simulated-desktop-card-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: #6B5C8E;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.simulated-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.simulated-calendar-day {
  background: rgba(155, 123, 255, 0.04);
  border: 1px solid rgba(155, 123, 255, 0.08);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
}
.simulated-calendar-day.active {
  background: rgba(255, 79, 160, 0.08);
  border-color: rgba(255, 79, 160, 0.3);
  color: var(--primary-hover);
  font-weight: 700;
}
.simulated-calendar-day.completed {
  background: rgba(155, 123, 255, 0.08);
  border-color: rgba(155, 123, 255, 0.3);
  color: var(--text-light);
  text-decoration: line-through;
}
.simulated-chat-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(155, 123, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(155, 123, 255, 0.06);
}
.simulated-chat-bubble {
  padding: 8px 12px;
  border-radius: 14px;
  max-width: 80%;
  font-size: 11px;
}
.simulated-chat-bubble.user {
  background: var(--primary-hover);
  color: white;
  align-self: flex-end;
}
.simulated-chat-bubble.ai {
  background: white;
  border: 1px solid rgba(155, 123, 255, 0.1);
  color: #2A1B4E;
  align-self: flex-start;
}

/* Simulated App UI (Desktop Showcase Products) */
.simulated-product-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(155, 123, 255, 0.08);
}
.simulated-product-row:last-child {
  border-bottom: none;
}
.simulated-product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.simulated-product-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #2A1B4E;
}
.simulated-product-type {
  font-size: 9.5px;
  color: #6B5C8E;
}
.simulated-product-tag {
  background: rgba(155, 123, 255, 0.08);
  color: var(--primary-hover);
  font-size: 9px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 99px;
}
