/* ==========================================================================
   DESIGN TOKENS & VARIÁVEIS (:root)
   ========================================================================== */
:root {
  /* Fontes */
  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: Georgia, serif; /* Para detalhes clássicos e números */

  /* Cores (Branding MedScale - Nova Paleta Light Premium) */
  --bg-dark: #ffffff; /* Fundo Principal Claro */
  --bg-dark-blue: #f8fafc; /* Fundo Secundário Claro */
  --bg-card: #ffffff; /* Fundo de Cards Claro */
  --color-primary: #1e3a8a; /* Azul Escuro / Royal */
  --color-primary-indigo: #2563eb; /* Azul Vibrante */
  --color-accent-blue: #3b82f6; /* Azul Claro */
  --color-accent-turquoise: #0284c7; /* Azul Oceano */
  --color-accent-turquoise-hover: #0369a1; /* Azul Oceano Escuro */
  --color-accent-violet: #4f46e5; /* Indigo */
  
  --text-light: #0f172a; /* Texto Escuro Principal (Slate 900) */
  --text-muted: #475569; /* Texto Muted Claro (Slate 600) */
  --border-color: rgba(15, 23, 42, 0.08); /* Borda Escura Sutil */
  --border-accent-gold: rgba(15, 23, 42, 0.05); /* Baixa opacidade */
  
  /* Transições desativadas (Instântaneas) */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --t-snappy: 0s;
  --t-smooth: 0s;
  --t-slow: 0s;
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ==========================================================================
   RESET & CONFIGURAÇÃO GERAL
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  /* "clip" em vez de "hidden": corta o overflow horizontal sem criar um
     scroll container, que quebraria o position: sticky do palco de
     Benefícios (o painel deixava de fixar e ficava um vão em branco). */
  overflow-x: clip;
  line-height: 1.6;
}

/* Scrollbar Personalizado (Branding do Site) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-blue);
}

/* ==========================================================================
   LAYOUT E ESPAÇAMENTOS GERAIS
   ========================================================================== */
section {
  padding: 100px 24px;
  position: relative;
}

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

.section-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-kicker {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 12px;
  font-family: var(--font-title);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   BOTÕES E COMPONENTES DE CONVERSÃO (CTAs)
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-premium), background-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium);
  min-height: 48px;
}

.btn-pill {
  border-radius: 999px !important;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.btn-cta-secondary {
  background-color: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #2563eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.btn-cta-header {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  border: none;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 10px 22px;
  min-height: 40px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

@media (hover: hover) and (pointer: fine) {
  .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
  }
  .btn-cta-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0369a1 100%);
  }
  .btn-cta-secondary:hover {
    background-color: #f8fafc;
    border-color: #2563eb;
  }
  .btn-cta-header:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0369a1 100%);
    color: #ffffff;
  }
}

/* ==========================================================================
   NAVBAR INTELIGENTE (Light Glass Model)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-smooth), backdrop-filter var(--t-smooth), border-color var(--t-smooth), transform var(--t-smooth);
}

.site-header--scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.site-header--hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: none;
}

.nav-menu {
  margin-left: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: #334155;
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2563eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-premium);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: #2563eb;
  }
  .nav-link:hover::after {
    transform: scaleX(1);
  }
  .site-header--scrolled .nav-link:hover {
    color: #2563eb;
  }
}

/* Menu Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  z-index: 1010;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0f172a;
  position: absolute;
  left: 12px;
  transition: transform 0.35s var(--ease-premium), opacity 0.35s ease, background-color 0.35s ease;
}

.nav-hamburger span:nth-child(1) { top: 18px; }
.nav-hamburger span:nth-child(2) { top: 23px; }
.nav-hamburger span:nth-child(3) { top: 28px; }

.nav-hamburger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ==========================================================================
   SEÇÃO 1: HERO (Seamless Canvas 100vh - Modelo MarketLab)
   ========================================================================== */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 85px 24px 60px 24px;
  background: #f6f5fa;
  color: var(--text-light);
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  max-width: 100%;
  text-align: left;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
  font-family: var(--font-title);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(1.95rem, 3.1vw, 2.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 24px;
  max-width: 560px;
}

/* Botões Duplos Pill */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* Bloco de Depoimento Destaque */
.hero-testimonial-block {
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  max-width: 500px;
}

.hero-stars {
  color: #2563eb;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.hero-quote-text {
  font-size: 0.86rem;
  color: #475569;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 8px;
}

.hero-author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-author-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}

.hero-author-role {
  font-size: 0.74rem;
  color: #64748b;
}

/* Coluna Direita: Gráficos (Topo) + KPIs (Base) */
.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Composição Multi-Widget Compacta */
.hero-widgets-composition {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.hero-graphic-img {
  width: 100%;
  max-width: 530px;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

/* Micro-Acentos Geométricos Flutuantes */
.decor-shape {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.shape-sq-1 {
  width: 14px;
  height: 14px;
  background: #38bdf8;
  border-radius: 4px;
  top: 15px;
  left: 60px;
  opacity: 0.85;
}

.shape-sq-2 {
  width: 10px;
  height: 10px;
  background: #60a5fa;
  border-radius: 2px;
  bottom: 20px;
  left: 170px;
  opacity: 0.75;
}

.shape-tr-1 {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 11px solid #3b82f6;
  bottom: 40px;
  right: 70px;
  opacity: 0.85;
}

.shape-dot-1 {
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  top: 85px;
  right: 15px;
}

.shape-dot-2 {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  top: 200px;
  left: 15px;
}

.hero-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.avatar-node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  z-index: 4;
}

.avatar-node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.node-1 { top: 10px; left: 15px; }
.node-2 { top: 155px; left: -10px; }
.node-3 { bottom: 15px; left: 40px; }

/* Cards de Widgets (Dark Slate Glass) */
.widget-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  z-index: 3;
  transition: transform 0.3s ease;
}

.widget-card:hover {
  transform: translateY(-3px);
}

.card-donut {
  top: 0px;
  right: 10px;
  width: 190px;
}

.widget-mini-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.w-label { font-size: 0.65rem; color: #94a3b8; }
.w-value { font-family: var(--font-title); font-size: 0.8rem; font-weight: 700; color: #38bdf8; }

.donut-chart-box {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-center-text {
  position: absolute;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
}

.card-bars {
  top: 120px;
  left: 35px;
  width: 165px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-bars-grid {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.mini-bar-col {
  width: 6px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.mini-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, #38bdf8, #2563eb);
  border-radius: 3px;
}

.bar-score-num {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 900;
  color: #38bdf8;
  display: block;
  line-height: 1;
}

.bar-score-lbl {
  font-size: 0.62rem;
  color: #94a3b8;
}

.card-main-area {
  bottom: 5px;
  right: 0px;
  width: 220px;
}

.card-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.c-tag { font-size: 0.6rem; color: #94a3b8; }
.c-stat-growth { font-family: var(--font-title); font-size: 0.72rem; font-weight: 700; color: #34d399; }

.area-svg {
  width: 100%;
  height: 48px;
}

.card-mini-badge {
  top: 155px;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.eye-icon-box {
  width: 24px;
  height: 24px;
  background: rgba(37, 99, 235, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.mini-badge-num {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.mini-badge-lbl {
  font-size: 0.6rem;
  color: #94a3b8;
}

/* Faixa de Métricas KPI Localizada Diretamente Abaixo dos Gráficos (Modelo de Referência Exact) */
.hero-bottom-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-big-num {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  text-align: center;
}

.stat-big-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.25;
  text-align: center;
}

/* ==========================================================================
   SEÇÃO 2: SOBRE A MEDSCALE
   ========================================================================== */
.section-about {
  background-color: #0b172e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 54px;
  align-items: center;
}

.about-left {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.section-about .section-kicker {
  color: #38bdf8;
}

.section-about .section-title {
  color: #ffffff;
}

.section-about .section-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-about .section-desc {
  color: #cbd5e1;
}

.croqui-frame {
  aspect-ratio: 3/4;
  border: 1px dashed rgba(56, 189, 248, 0.3);
  padding: 12px;
  position: relative;
  background-color: rgba(15, 23, 42, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: 14px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.croqui-placeholder {
  width: 100%;
  height: 100%;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.croqui-text {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(56, 189, 248, 0.3);
  font-size: 0.9rem;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.section-about .btn-cta-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .section-about .btn-cta-secondary:hover {
    background-color: rgba(56, 189, 248, 0.18);
    border-color: #38bdf8;
    color: #ffffff;
  }
}

.about-action {
  margin-top: 20px;
}

/* ==========================================================================
   SEÇÃO 3: BENEFÍCIOS / RESULTADOS REAIS (LAYOUT SIMPLIFICADO)
   ========================================================================== */
.section-benefits {
  background-color: var(--bg-dark);
  padding: 56px 24px 64px;
}

.section-benefits .section-header {
  margin-bottom: 36px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-benefits .section-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 12px;
}

.section-benefits .section-subtitle {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.benefits-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-simple-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}

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

.benefit-simple-badge {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary-indigo);
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 6px 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.benefit-simple-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
}

.benefit-simple-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 640px) {
  .benefits-simple-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-simple-card {
    padding: 20px;
  }
}

/* ==========================================================================
   SEÇÃO 4: SOLUÇÕES / METODOLOGIA
   ========================================================================== */
.section-solutions {
  background-color: #0b172e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-solutions .section-kicker {
  color: #38bdf8;
}

.section-solutions .section-title {
  color: #ffffff;
}

.section-solutions .section-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-solutions .section-subtitle {
  color: #cbd5e1;
}

/* Intro e Card de Resumo do Método */
.metodo-intro {
  max-width: 840px;
  margin-bottom: 28px;
}

/* Estrutura Sticky Pin para Congelar a Tela (Título + Subtítulo + Card) */
.scale-sticky-wrapper {
  position: relative;
  height: 250vh;
  margin-top: 0px;
}

.scale-pinned-block {
  position: sticky;
  top: max(30px, calc(50vh - 310px));
  z-index: 10;
  display: flex;
  flex-direction: column;
}

/* Contêiner Interativo do Método S.C.A.L.E. */
.scale-method-container {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 36px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.scale-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scale-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(15, 23, 42, 0.9);
  color: #94a3b8;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-premium);
  opacity: 0.95;
}

.scale-btn:hover {
  border-color: #38bdf8;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.95);
  transform: translateY(-2px);
}

.scale-btn.active {
  background: linear-gradient(135deg, #0052ff 0%, #00d4ff 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.7), 0 0 14px rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
  opacity: 1;
}

.scale-content-wrapper {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scale-content-pane {
  display: none;
  opacity: 0;
}

.scale-content-pane.active {
  display: block;
  opacity: 1;
  animation: scalePaneFade 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.scale-pane-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.scale-pane-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.scale-pane-concept {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  width: fit-content;
}

.scale-pane-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 28px;
}

.scale-deliverables-title {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #38bdf8;
  margin-bottom: 16px;
}

.scale-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scale-deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f8fafc;
}

.scale-deliverable-item svg {
  color: #38bdf8;
  flex-shrink: 0;
}

/* Responsividade do Método S.C.A.L.E. */
@media (max-width: 1024px) {
  .scale-sticky-wrapper {
    height: auto;
  }

  .scale-pinned-block {
    position: relative;
    top: 0;
  }

  .metodo-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scale-method-container {
    position: relative;
    top: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .scale-nav {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .scale-btn {
    aspect-ratio: auto;
    height: 56px;
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .scale-deliverables-grid {
    grid-template-columns: 1fr;
  }
  
  .scale-method-container {
    padding: 20px;
  }

  .scale-btn {
    height: 48px;
    font-size: 1.25rem;
  }
}
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%);
  border: 2px solid #0b172e;
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-step:hover .timeline-marker {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
  border-color: #38bdf8;
}

.timeline-content {
  padding: 6px 0 56px;
}

.timeline-step:last-child .timeline-content {
  padding-bottom: 0;
}

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

.step-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO 5: DEPOIMENTOS DE MÉDICOS
   ========================================================================== */
.section-testimonials {
  background-color: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.video-preview-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}

.thumbnail-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  z-index: 2;
}

.thumbnail-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.video-thumbnail-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background-color var(--t-snappy);
}

.play-icon {
  width: 52px;
  height: 52px;
  color: #ffffff;
  fill: #ffffff;
  transition: transform 0.25s var(--ease-premium);
}

@media (hover: hover) and (pointer: fine) {
  .video-preview-wrapper:hover .play-overlay {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .video-preview-wrapper:hover .play-icon {
    transform: scale(1.15);
  }
}

.testimonial-info {
  padding: 24px;
}

.testimonial-author {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
}

.testimonial-specialty {
  display: block;
  font-size: 0.8rem;
  color: var(--color-accent-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Modal de Vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-smooth), visibility var(--t-smooth);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  width: 90%;
  max-width: 800px;
  position: relative;
  z-index: 2010;
  aspect-ratio: 16/9;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.video-modal-body {
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   SEÇÃO 6: FORMULÁRIO DE INSCRIÇÃO / DIAGNÓSTICO
   ========================================================================== */
/* ==========================================================================
   SEÇÃO 6: FORMULÁRIO DE INSCRIÇÃO / DIAGNÓSTICO
/* ==========================================================================
   SEÇÃO 6: FORMULÁRIO DE DIAGNÓSTICO
   ========================================================================== */
.section-form {
  background-color: #0b172e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contato-left .section-kicker {
  color: #38bdf8;
}

.contato-left .section-title {
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.contato-left .section-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contato-left .section-desc {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.3rem 0;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s var(--ease-premium);
}

.info-item:hover {
  background: none;
  transform: translateX(4px);
}

.info-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.info-item-label {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.1rem;
}

.info-item-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s ease;
}

.info-item:hover .info-item-value {
  color: #38bdf8;
}

/* ─── FORM CARD ─── */
.form-card {
  background: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.form-title .text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.diagnostico-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.75rem 0.95rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.25s var(--ease-premium), box-shadow 0.25s var(--ease-premium), background-color 0.25s var(--ease-premium);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  background-color: #1e293b;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-premium);
  position: relative;
  user-select: none;
}

.radio-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.08);
}

.radio-card:has(input[type="radio"]:checked) {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.radio-custom {
  width: 14px;
  height: 14px;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s var(--ease-premium);
}

.radio-custom::after {
  content: '';
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
}

.radio-card input[type="radio"]:checked ~ .radio-custom {
  border-color: #38bdf8;
}

.radio-card input[type="radio"]:checked ~ .radio-custom::after {
  display: block;
}

.radio-label {
  font-size: 0.8rem;
  color: #e2e8f0;
  font-family: var(--font-body);
}

.form-textarea-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: -0.2rem;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.form-consent {
  font-size: 0.72rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.4;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--color-primary-indigo) 0%, var(--color-accent-blue) 100%);
  color: #ffffff;
  margin-top: 12px;
  width: 100%;
}

.btn-submit-form:hover {
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-primary-indigo) 100%);
}

/* ==========================================================================
   SEÇÃO 7: FAQ / ACORDEÃO (ANIMAÇÃO EM CSS GRID)
   ========================================================================== */
.section-faq {
  background-color: var(--bg-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-left .section-title {
  margin-bottom: 0.8rem;
}

.faq-left .section-desc {
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
  min-height: 48px;
}

.faq-question:focus {
  outline: none;
  background-color: rgba(37, 99, 235, 0.02);
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--t-smooth);
}

/* Rotação do chevron no estado Aberto */
.faq-question[aria-expanded="true"] .faq-icon-arrow {
  transform: rotate(180deg);
}

/* UX do Accordion usando CSS Grid */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-smooth);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 30px 24px 30px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   ESTILOS DE BLOG (GRID E LEITURA DETALHADA)
   ========================================================================== */
#blog-secao, #artigo-secao {
  padding: 140px 24px 100px 24px;
}

.blog-title-section {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 60px;
  text-align: center;
  color: var(--text-light);
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.blog-card-content {
  padding: 32px;
}

.blog-card-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 14px;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-turquoise);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Detalhe do Artigo Único */
.artigo-single-container {
  max-width: 1200px;
  margin: 0 auto;
}

.artigo-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.artigo-main {
  min-width: 0;
}

.btn-voltar {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent-turquoise);
  margin-bottom: 24px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--t-snappy);
  min-height: 44px;
}

.btn-voltar:hover {
  opacity: 0.8;
}

.artigo-main-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 24px;
}

.artigo-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 24px 0 32px 0;
}

.artigo-text-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-muted);
  text-align: justify;
}

.artigo-text-body strong {
  font-weight: 700;
  color: var(--text-light);
}

.artigo-text-body h2 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 40px 0 20px 0;
}

.artigo-text-body h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 32px 0 16px 0;
}

.blog-blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-accent-blue);
  border-left: 3px solid var(--color-accent-blue);
  padding-left: 24px;
  margin: 36px 0;
  font-style: italic;
}

.artigo-text-body ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.artigo-text-body li {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* Sidebar do Artigo */
.artigo-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.autor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 12%;
  margin-bottom: 16px;
}

.autor-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.autor-nome {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.autor-cargo {
  font-size: 0.85rem;
  color: var(--color-accent-blue);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.autor-bio {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.sidebar-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 16px 0;
}

.sidebar-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sidebar-date strong {
  color: var(--text-light);
}

.sidebar-heading {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-post-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--t-snappy);
}

.sidebar-post-item:hover .sidebar-post-title {
  color: var(--color-primary-indigo);
}

.sidebar-post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WIDGET DE WHATSAPP INTELIGENTE
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-premium);
}

.whatsapp-widget.widget-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Botão Circular Principal - Verde Oficial */
.whatsapp-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease-premium), background-color 0.2s var(--ease-premium);
  will-change: transform;
}

.whatsapp-svg-icon {
  fill: #FFFFFF;
  width: 28px;
  height: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-trigger-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E;
  }
}

/* Tooltip de Inatividade */
.whatsapp-tooltip {
  background-color: #0b1329;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
  padding: 0 18px 0 14px;
  border-radius: 6px;
  margin-bottom: 0;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.3s var(--ease-premium), 
              transform 0.3s var(--ease-premium), 
              max-height 0.3s var(--ease-premium), 
              padding 0.3s var(--ease-premium), 
              margin-bottom 0.3s var(--ease-premium),
              visibility 0.3s;
  will-change: opacity, transform, max-height;
}

.whatsapp-tooltip.active {
  opacity: 1;
  visibility: visible;
  max-height: 80px;
  padding: 12px 18px 12px 14px;
  margin-bottom: 12px;
  transform: translateY(0) scale(1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 25px;
  width: 10px;
  height: 10px;
  background-color: #0b1329;
  border-right: 1px solid rgba(59, 130, 246, 0.3);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  transform: rotate(45deg);
}

.close-tooltip-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 12px;
  margin: -12px -12px -12px 0;
  transition: color 0.2s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.close-tooltip-btn:hover {
  color: var(--color-accent-blue);
}

/* Painel de Chat Simulado */
.whatsapp-chat-panel {
  width: 320px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s var(--ease-premium), 
              transform 0.3s var(--ease-premium), 
              max-height 0.3s var(--ease-premium), 
              margin-bottom 0.3s var(--ease-premium),
              visibility 0.3s;
  will-change: transform, opacity, max-height;
}

.whatsapp-chat-panel.active {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  margin-bottom: 16px;
  transform: translateY(0) scale(1);
}

.chat-header {
  background-color: #1e3a8a;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-title);
}

.chat-header-info {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
}

.chat-header-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Proteções fundamentais contra scroll trancado e colapso de flexbox */
.chat-messages-container {
  padding: 16px;
  max-height: 340px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #162040;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
  word-wrap: break-word;
  flex-shrink: 0; /* Crítico contra flexbox collapse */
}

.chat-bubble.received {
  background-color: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  align-self: flex-start;
  border-top-left-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-bubble.sent {
  background-color: rgba(1, 118, 251, 0.12);
  color: var(--text-light);
  align-self: flex-end;
  border-top-right-radius: 2px;
  border: 1px solid rgba(1, 118, 251, 0.25);
}

.chat-faq-options {
  display: flex;
  flex-direction: column;
  flex-shrink: 0; /* Crítico contra flexbox collapse */
  gap: 8px;
  margin-top: 8px;
  opacity: 1;
  max-height: 300px;
  transition: opacity 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium), margin-top 0.3s var(--ease-premium);
  overflow: hidden;
}

.chat-faq-options.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.chat-faq-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.chat-faq-opt {
  background-color: var(--bg-card);
  border: 1px solid rgba(1, 118, 251, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--text-light);
  transition: background-color 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium);
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .chat-faq-opt:hover {
    background-color: rgba(1, 118, 251, 0.05);
    border-color: var(--color-accent-turquoise);
  }
}

.chat-footer {
  padding: 12px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-direct-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-turquoise);
  text-decoration: none;
  letter-spacing: normal;
  position: relative;
  transition: color 0.35s var(--ease-premium), letter-spacing 0.4s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
}

.chat-direct-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-premium);
}

@media (hover: hover) and (pointer: fine) {
  .chat-direct-link:hover {
    color: var(--color-accent-blue);
    letter-spacing: 0.4px;
  }
  .chat-direct-link:hover::after {
    transform: scaleX(1);
  }
}

/* Indicador de Digitando */
.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 6px 0;
}
.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  opacity: 0.4;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

.whatsapp-trigger-btn:focus-visible,
.close-tooltip-btn:focus-visible,
.chat-faq-opt:focus-visible {
  outline: 2px solid var(--color-accent-turquoise) !important;
  outline-offset: 2px;
}

/* ==========================================================================
   STICKY CTA BAR RODAPÉ MOBILE (Conversão rápida mobile)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background-color: var(--bg-dark-blue);
  border-top: 1px solid var(--border-color);
  padding: 12px 16px;
}

.btn-cta-mobile-sticky {
  width: 100%;
  background-color: #25D366;
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  border-radius: 40px;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
  background-color: #0b1329;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 24px 40px 24px;
  color: #f1f5f9;
}

.site-footer .footer-heading {
  color: #ffffff;
}

.site-footer .footer-slogan,
.site-footer .footer-copyright,
.site-footer .footer-credits {
  color: #94a3b8;
}

.site-footer .footer-nav-link,
.site-footer .footer-contact-link {
  color: #cbd5e1;
}

.site-footer .footer-nav-link:hover,
.site-footer .footer-contact-link:hover {
  color: var(--color-accent-blue);
}

.site-footer .footer-logo {
  filter: brightness(0) invert(1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1);
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

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

.footer-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: normal;
  position: relative;
  display: inline-block;
  transition: color 0.35s var(--ease-premium), letter-spacing 0.4s var(--ease-premium);
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-premium);
}

.footer-nav-link:hover {
  color: var(--color-accent-blue);
  letter-spacing: 0.4px;
}

.footer-nav-link:hover::after {
  transform: scaleX(1);
}

.footer-contact-item {
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-contact-link {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: normal;
  position: relative;
  transition: color 0.35s var(--ease-premium), letter-spacing 0.4s var(--ease-premium);
  display: inline-block;
}

.footer-contact-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-premium);
}

.footer-contact-link:hover {
  color: var(--color-accent-turquoise);
  letter-spacing: 0.4px;
}

.footer-contact-link:hover::after {
  transform: scaleX(1);
}

.social-links-container {
  display: flex;
  gap: 16px;
}

/* Ícones Sociais via SVG Inline */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: transparent;
  transition: border-color var(--t-snappy), background-color var(--t-snappy);
}

.social-svg-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill var(--t-snappy), stroke var(--t-snappy);
}

/* Variante de contorno (Lucide/Feather) para as marcas sem massa sólida no logo do WhatsApp */
.social-svg-icon--outline {
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link--whatsapp:hover { border-color: #25D366; }
.social-link--whatsapp:hover .social-svg-icon { fill: #25D366; }

.social-link--instagram:hover { border-color: #E1306C; }
.social-link--instagram:hover .social-svg-icon--outline { stroke: #E1306C; }

.social-link--youtube:hover { border-color: #FF0000; }
.social-link--youtube:hover .social-svg-icon--outline { stroke: #FF0000; }

.social-link--linkedin:hover { border-color: #0A66C2; }
.social-link--linkedin:hover .social-svg-icon--outline { stroke: #0A66C2; }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright,
.footer-credits {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.credits-link {
  color: var(--color-accent-turquoise);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: normal;
  position: relative;
  display: inline-block;
  transition: color 0.35s var(--ease-premium), letter-spacing 0.4s var(--ease-premium);
}

.credits-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-premium);
}

.credits-link:hover {
  color: #ffffff;
  letter-spacing: 0.4px;
}

.credits-link:hover::after {
  transform: scaleX(1);
}

/* ==========================================================================
   ANIMAÇÃO E REVELAÇÃO DINÂMICA AO ROLAR
   ========================================================================== */
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-up,
.scroll-reveal-down {
  opacity: 0;
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
  will-change: opacity, transform;
}

.scroll-reveal-left {
  transform: translateX(-48px);
}

.scroll-reveal-right {
  transform: translateX(48px);
}

.scroll-reveal-up {
  transform: translateY(48px);
}

.scroll-reveal-down {
  transform: translateY(-48px);
}

.scroll-reveal-active {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-up,
  .scroll-reveal-down {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE / TABLET
   ========================================================================== */
@media (max-width: 991px) {
  section {
    padding: 80px 24px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .croqui-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .timeline-content {
    padding-bottom: 44px;
  }

  .artigo-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .artigo-sidebar {
    position: static;
  }

  .contato-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contato-left,
  .faq-left {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Menu Hamburger ativação */
  .nav-hamburger {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.35s var(--ease-premium), transform 0.35s var(--ease-premium);
    z-index: 1005;
    margin-left: 0;
  }
  
  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  
  .nav-links {
    flex-direction: column;
    background: rgba(12, 20, 36, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
    height: calc(100dvh - 88px); /* 100dvh para evitar problemas no mobile */
    overflow-y: auto;
  }
  
  .header-cta {
    display: none; /* Esconde cta do header no mobile */
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    display: flex;
    justify-content: center;
  }

  .hero-kpi-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-widgets-composition {
    display: none !important;
  }

  .hero-bottom-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 340px;
  }
  
  /* Ativação do Mobile Sticky CTA Bar */
  .mobile-sticky-bar {
    display: block;
  }
  
  /* Espaço inferior de segurança contra a barra fixa do mobile */
  .site-footer {
    padding-bottom: 96px;
  }
  
  #blog-secao, #artigo-secao {
    padding-bottom: 100px;
  }
  
  /* Widget WhatsApp ajustado para mobile para não sobrepor a barra fixa */
  .whatsapp-widget {
    bottom: 80px;
    right: 16px;
  }

  /* No mobile, o deslocamento horizontal (translateX) das animações de entrada
     empurra o conteúdo para fora da viewport antes da revelação e força
     rolagem lateral. Mantemos apenas o fade + leve translateY, sem eixo X. */
  .scroll-reveal-left,
  .scroll-reveal-right {
    transform: translateY(24px);
  }
}

@media (max-width: 600px) {
  .timeline-step {
    gap: 16px;
  }

  .timeline-track {
    width: 48px;
  }

  .timeline-marker {
    width: 44px;
    height: 44px;
  }

  .timeline-marker svg {
    width: 18px;
    height: 18px;
  }

  .timeline-content {
    padding-bottom: 36px;
  }

  .diagnostico-form {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .form-row,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.5rem;
  }

  /* Grids com minmax() em px estouram a viewport em telas estreitas
     (ex: 375-390px de largura com o padding de seção); força 1 coluna. */
  .testimonials-grid,
  .blog-grid-layout {
    grid-template-columns: 1fr;
  }
}

/* Proteções de Hover contra toques acidentais em dispositivos móveis */
@media (hover: none) {
  .nav-link::after,
  .footer-nav-link::after,
  .footer-contact-link::after,
  .credits-link::after,
  .chat-direct-link::after,
  .benefit-card::before {
    display: none;
  }
}

/* ==========================================================================
   PAINEL DE LOGIN (WHITE PRIMARY & BLUE SECONDARY)
   ========================================================================== */
.login-body-page {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #f0f4f9;
  background-image: radial-gradient(circle at 10% 20%, rgba(224, 237, 252, 0.6) 0%, rgba(240, 244, 249, 1) 90%);
  font-family: var(--font-body, 'Inter', sans-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.login-wrapper {
  width: 100%;
  max-width: 960px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 40, 100, 0.07), 0 2px 10px rgba(0, 40, 100, 0.04);
  display: flex;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Painel Esquerdo (Visual & Apoio) */
.login-left-panel {
  flex: 1;
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid #eef2f6;
}

.login-support-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Painel Direito (Formulário) */
.login-right-panel {
  flex: 1;
  background-color: #ffffff;
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-title {
  font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0052cc;
  text-align: center;
  margin: 0 0 36px 0;
  letter-spacing: -0.3px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.login-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.left-icon {
  left: 16px;
}

.right-icon {
  right: 14px;
  pointer-events: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  color: #94a3b8;
  border-radius: 50%;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.right-icon:hover,
.right-icon.active {
  color: #0052cc;
  background-color: rgba(0, 82, 204, 0.06);
}

.login-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 48px 14px 48px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-input::placeholder {
  color: #94a3b8;
}

.login-input:focus {
  border-color: #0052cc;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
}

.login-input-group:focus-within .left-icon {
  color: #0052cc;
}

.login-submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  background-color: #0052cc;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 52px;
}

.login-submit-btn:hover {
  background-color: #0043a8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.35);
}

.login-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

/* Responsividade Mobile */
@media (max-width: 840px) {
  .login-card {
    flex-direction: column;
  }
  
  .login-left-panel {
    border-right: none;
    border-bottom: 1px solid #eef2f6;
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }

  .login-hero-subtitle {
    max-width: 100%;
  }

  .login-right-panel {
    padding: 36px 24px;
  }
}

