/* ==========================================================================
   KEVIN LINCOLN — NUTRICIONISTA | DESIGN SYSTEM & STYLESHEET GLOBAL
   ========================================================================== */

/* ── 01. VARIÁVEIS GLOBAIS & DESIGN TOKENS ── */
:root {
  /* Cores Principais */
  --primary: #d65a5a;
  --primary-hover: #b84343;
  --primary-dark: #8b2424;
  --primary-glow: rgba(214, 90, 90, 0.28);
  --primary-subtle: rgba(214, 90, 90, 0.08);
  --primary-border: rgba(214, 90, 90, 0.22);
  
  --secondary: #0eb55c;
  --secondary-hover: #0b974c;
  --secondary-glow: rgba(14, 181, 92, 0.25);
  --secondary-subtle: rgba(14, 181, 92, 0.08);
  
  /* Fundos Escuros Profissionais */
  --bg-body: #0b0d11;
  --bg-surface: #11141b;
  --bg-card: #161b24;
  --bg-card-hover: #1c222e;
  --bg-alt: #0e1117;
  
  /* Textos */
  --text-primary: #f2f5f9;
  --text-secondary: #9aa5b5;
  --text-muted: #647082;
  --text-highlight: #ffffff;
  
  /* Bordas e Linhas */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-active: rgba(214, 90, 90, 0.4);
  
  /* Glassmorphism */
  --glass-bg: rgba(14, 17, 23, 0.78);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-blur: blur(16px);
  
  /* Tipografia */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(214, 90, 90, 0.2);
  
  /* Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 02. RESET & REGRAS BÁSICAS ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

img, svg, video {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ── 03. TIPOGRAFIA & HIERARQUIA ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.highlight {
  color: var(--primary);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;    
  -webkit-text-fill-color: transparent;
}

/* ── 04. CONTAINERS E SEÇÕES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

.section-padding-sm {
  padding: 60px 0;
}

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

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-secondary);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ── 05. BOTÕES & CTAS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-normal);
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 18px rgba(214, 90, 90, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(214, 90, 90, 0.48);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.btn-outline-primary:hover {
  background: var(--primary-subtle);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #128c46;
  color: #ffffff;
  border: 1px solid #149c4f;
  box-shadow: 0 4px 16px rgba(14, 181, 92, 0.28);
}

.btn-whatsapp:hover {
  background: #0ea14f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 181, 92, 0.42);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-full {
  width: 100%;
}

/* ── 06. BARRA DE LEITURA ── */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff8a8a, var(--primary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── 07. HEADER & NAVEGAÇÃO PREMIUM ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(11, 13, 17, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: padding var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(11, 13, 17, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

/* LOGO REFINADA & PROPORCIONAL */
.brand-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.brand-logo .logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px;
  filter: drop-shadow(0 2px 8px rgba(214, 90, 90, 0.3));
}

.brand-logo span {
  color: var(--primary);
  font-weight: 700;
}

/* MENU DESKTOP REESTRUTURADO */
.nav-desk {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0 16px;
}

.nav-desk > ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
}

.nav-item {
  position: relative;
  list-style: none;
  flex-shrink: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  white-space: nowrap !important;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.2;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(214, 90, 90, 0.14);
  border-color: rgba(214, 90, 90, 0.35);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(214, 90, 90, 0.15);
}

.nav-link .dropdown-caret {
  width: 9px;
  height: 9px;
  fill: currentColor;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: 1px;
}

.nav-item:hover .dropdown-caret,
.nav-item:focus-within .dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary);
}

/* DROPDOWN MENU */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: rgba(14, 17, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-link small {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 400;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: rgba(214, 90, 90, 0.14);
  color: #ffffff;
}

.dropdown-link:hover small,
.dropdown-link.active small {
  color: rgba(255, 255, 255, 0.75);
}

/* BOTÃO CTA PRINCIPAL */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  white-space: nowrap !important;
  color: #ffffff;
  background: linear-gradient(135deg, #d65a5a 0%, #be4343 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(214, 90, 90, 0.32);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #e36666 0%, #cb4848 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 90, 90, 0.45);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

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

/* BOTÃO HAMBÚRGUER MOBILE */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px;
  border-radius: var(--radius-pill);
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* ── 08. MENU MOBILE (DRAWER) ── */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100%;
  background: rgba(14, 17, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

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

.mobile-nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.mobile-subnav {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.mobile-sublink {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.mobile-sublink:hover,
.mobile-sublink.active {
  color: var(--primary);
  background: var(--primary-subtle);
}

.mobile-drawer-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── 09. HERO PRINCIPAL — POSICIONAMENTO E CONVERSÃO ── */
.hero-main {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  padding: 148px 0 100px;
  overflow: hidden;
}

/* Glow radial de fundo — discreta aura coral */
.hero-main-bg-glow {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(214, 90, 90, 0.10) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* Grade de linhas perspectiva (textura de luxo) */
.hero-main-line-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Grade 55% / 45% — mais peso ao texto */
.hero-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coluna de conteúdo textual */
.hero-main-content {
  display: flex;
  flex-direction: column;
}

/* Eyebrow — indicador de status pulsante + credencial CRN */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow-sep {
  color: var(--border-medium);
  font-size: 0.95rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(14, 181, 92, 0.7);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Headline — impacto máximo, zero ruído */
.hero-main-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-highlight);
  margin-bottom: 26px;
  max-width: 580px;
}

/* Subtítulo — 2 a 3 linhas, não mais */
.hero-main-sub {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-main-sub strong {
  color: var(--primary);
  font-weight: 600;
}

/* CTAs — principal + fantasma */
.hero-main-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
}

/* Credenciais discretas em linha */
.hero-credentials {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.hero-cred-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-cred-item svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Coluna visual / foto */
.hero-main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* Cantos decorativos de moldura premium */
.hero-photo-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}

.hero-photo-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  border-radius: 4px 0 0 0;
}

.hero-photo-corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-radius: 0 0 4px 0;
}

/* Aura de luz atrás da foto */
.hero-photo-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(ellipse at 60% 40%, rgba(214, 90, 90, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-photo-img {
  position: relative;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  z-index: 1;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  display: block;
}

/* Cartão de identidade ancorado na base da foto */
.hero-photo-identity {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 16px 16px;
}

.hero-photo-identity-inner {
  background: rgba(11, 13, 17, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.hero-photo-identity-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-photo-identity-status .hero-badge-dot {
  box-shadow: 0 0 6px rgba(14, 181, 92, 0.8);
}

.hero-photo-identity-name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-highlight);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-photo-identity-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
/* ── SEÇÃO DE ESCOLHA (hero-hub adaptado) ── */
.hero-hub-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

/* ── 09. HERO PRINCIPAL & HUB DE ESCOLHA (HOME) ── */
.hero-hub {
  position: relative;
  padding: 96px 0 80px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}


.hero-hub-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.hero-hub-intro h1 {
  margin-bottom: 20px;
}

.hero-hub-intro p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grid de Decisão dos 2 Caminhos */
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 40px;
  align-items: stretch;
}

.decision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.decision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--border-medium);
  transition: background var(--transition-normal);
}

.decision-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 24px rgba(214, 90, 90, 0.15);
}

.decision-card:hover::before {
  background: var(--primary);
}

.decision-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.decision-card-title {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.decision-card-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.decision-card-section {
  margin-bottom: 20px;
}

.decision-card-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.decision-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.decision-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.decision-feature-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 10. FAIXA DE CREDIBILIDADE & NÚMEROS ── */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.trust-info h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ── 11. TABELA & CARDS COMPARATIVOS ── */
.comparison-section {
  background: var(--bg-alt);
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.comparison-table th:first-child {
  width: 30%;
}

.comparison-table th.col-p24 {
  width: 35%;
  color: var(--primary);
}

.comparison-table th.col-premium {
  width: 35%;
  color: #ff8a8a;
}

.comparison-table td {
  font-size: 0.94rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.comparison-table td strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.96rem;
  margin-bottom: 2px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── 12. PROCESSO EM 3 PASSOS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.4;
  margin-bottom: 18px;
}

.process-step-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.process-step-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 13. MÉTODO ATLAS & PILARES DE AUTORIDADE ── */
.atlas-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(214, 90, 90, 0.12);
}

.pillar-card:hover::after {
  opacity: 1;
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pillar-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.pillar-point-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.pillar-point-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 14. CARDS DE PLANOS DO MÉTODO ATLAS (PADRONIZADOS) ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card-pro {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* DESTAQUE APENAS NO HOVER */
.plan-card-pro:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(214, 90, 90, 0.2);
}

.plan-badge-holder {
  min-height: 28px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

/* BADGE PLANO ANUAL — REFINADO & PROFISSIONAL */
.plan-badge-premium {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff8a8a;
  background: rgba(214, 90, 90, 0.12);
  border: 1px solid rgba(214, 90, 90, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.plan-header {
  margin-bottom: 20px;
}

.plan-duration {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.plan-title {
  font-size: 1.65rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.plan-recommendation {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 48px;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.plan-feature-item svg {
  width: 15px;
  height: 15px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.plan-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ── 15. PRODUTO DIGITAL & FASES METODOLÓGICAS ── */
.timeline-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phase-badge {
  display: inline-flex;
  width: max-content;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-subtle);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.phase-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.phase-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.phase-deliverables {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase-deliverable-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-primary);
}

.phase-deliverable-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

/* Box Para Quem É / Não É */
.target-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.target-audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.target-audience-card--positive {
  border-top: 3px solid var(--secondary);
}

.target-audience-card--negative {
  border-top: 3px solid var(--primary);
}

.target-audience-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.target-audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-secondary);
}

.target-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.target-audience-card--positive .target-item svg {
  fill: var(--secondary);
}

.target-audience-card--negative .target-item svg {
  fill: var(--primary);
}

/* ── 16. DEPOIMENTOS & PROVAS SOCIAIS (RESULTADOS) ── */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

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

.testimonial-card-pro {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card-pro:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-md);
}

.testimonial-stars-svg {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars-svg svg {
  width: 16px;
  height: 16px;
  fill: #f59e0b;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 90, 90, 0.3) 0%, rgba(214, 90, 90, 0.12) 100%);
  border: 1.5px solid var(--primary-border);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.94rem;
  color: var(--text-primary);
}

.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 17. SOBRE O KEVIN & AUTORIDADE ── */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}

.about-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  color: var(--text-primary);
}

.about-badge-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.gallery-photo-card:hover img {
  transform: scale(1.05);
}

.gallery-photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

/* ── 18. DÚVIDAS FREQUENTES (FAQ ACCORDION) ── */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-card.active {
  border-color: var(--primary-border);
}

.faq-trigger {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-icon-cross {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.faq-card.active .faq-icon-cross {
  transform: rotate(45deg);
  background: var(--primary-subtle);
}

.faq-icon-cross svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-content-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── 19. FORMULÁRIO DE AVALIAÇÃO & CONTATO ── */
.evaluation-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-group-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group-title:first-child {
  margin-top: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-control label {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.94rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control textarea {
  resize: vertical;
  min-height: 100px;
}

.form-control input.input-error,
.form-control select.input-error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 4px;
}

.chip-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.chip-option {
  position: relative;
}

.chip-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.chip-option input[type="radio"]:checked + .chip-label {
  background: var(--primary-subtle);
  border-color: var(--primary);
  color: var(--text-primary);
  font-weight: 600;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-message.active {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--secondary-subtle);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ── 20. MODAL GLOBAL DE AVALIAÇÃO ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--primary-subtle);
  border-color: var(--primary);
}

/* ── 21. FLOATING WHATSAPP & BOTÕES FLUTUANTES ── */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #128c46;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18, 140, 70, 0.45);
  z-index: 990;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(18, 140, 70, 0.6);
}

.floating-wa svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.floating-wa:hover .floating-wa-tooltip {
  opacity: 1;
}

/* ── 22. CTA BANNER FINAL DE CONVERSÃO ── */
.conversion-cta-banner {
  background: radial-gradient(circle at center, rgba(214, 90, 90, 0.18) 0%, var(--bg-surface) 70%);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.conversion-cta-banner h2 {
  margin-bottom: 16px;
}

.conversion-cta-banner p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
}

.conversion-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── 23. FOOTER ── */
footer {
  background: #07090c;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about p {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-crn {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.footer-col h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ── 24. PÁGINA 404 ── */
.error-page-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 12px;
}

/* ── 25. ANIMAÇÕES & SCROLL REVEAL ── */
.js-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 26. MEDIA QUERIES (RESPONSIVIDADE) ── */
@media (max-width: 1200px) {
  .header-flex {
    gap: 12px;
  }

  .nav-desk {
    margin: 0 6px;
  }

  .nav-desk > ul {
    gap: 2px;
    padding: 2px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 0.83rem;
  }

  .btn-header-cta {
    padding: 8px 15px;
    font-size: 0.81rem;
  }

  .brand-logo {
    font-size: 1.15rem;
    gap: 8px;
  }

  .brand-logo .logo-mark {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1040px) {
  .nav-desk {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-header-cta {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img-frame img {
    height: 420px;
  }
  
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Hero Principal — Mobile */
  .hero-main {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Mobile: foto primeiro, depois texto */
  .hero-main-visual {
    order: -1;
  }

  .hero-photo-img {
    height: 340px;
  }

  .hero-photo-frame {
    max-width: 100%;
  }

  .hero-main-headline {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    max-width: 100%;
  }

  .hero-main-sub {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-main-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-main-ctas .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-credentials {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .hero-photo-identity-name {
    font-size: 0.98rem;
  }


  .decision-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid,
  .atlas-pillars-grid,
  .timeline-phases-grid,
  .testimonials-grid,
  .target-audience-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
  }
  
  .comparison-table {
    min-width: 600px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .evaluation-form-wrapper {
    padding: 24px 18px;
  }
  
  .modal-box {
    padding: 24px 18px;
  }

  .conversion-cta-banner {
    padding: 40px 24px;
  }

  .conversion-cta-actions {
    flex-direction: column;
  }

  .conversion-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .btn-header-cta {
    display: none;
  }

  .brand-logo {
    font-size: 1.1rem;
    gap: 8px;
  }

  .brand-logo .logo-mark {
    width: 26px;
    height: 26px;
  }
}

/* ── CTA FINAL BADGE ── */
.cta-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
}

.cta-final-badge span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.cta-final-section {
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-alt) 100%);
}

.conversion-cta-banner h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
