/* =====================================================
   IMOBIFLOW — DESIGN SYSTEM PROFISSIONAL (MODO CLARO)
   Inspirado no padrão executivo de realtimegestao.dasare.com.br
   ===================================================== */

/* ── RESET & VARIÁVEIS ───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta Light Mode */
  --bg-color: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  
  /* Cores de Marca */
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  --primary-glow: rgba(79, 70, 229, 0.15);
  
  --secondary: #0284c7;
  --accent-emerald: #059669;
  --accent-emerald-light: #ecfdf5;
  --accent-purple: #7c3aed;
  --accent-amber: #d97706;
  --accent-rose: #e11d48;
  
  /* Bordas e Sombras */
  --card-border: #e2e8f0;
  --card-border-hover: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 16px 32px -8px rgba(79, 70, 229, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  
  /* Layout */
  --section-gap: 96px;
  --container-max: 1200px;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(5, 150, 105, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ── CABEÇALHO FIXO SEM SOBREPOSIÇÃO ──────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* ── TOP ANNOUNCEMENT BAR ────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #4f46e5, #059669);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-green {
  to {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.announcement-link {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.announcement-link:hover {
  opacity: 0.85;
}

/* ── NAVBAR PRINCIPAL ────────────────────────────── */
.navbar {
  height: 70px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo Oficial FluxoTarget com Emblema e Tipografia */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
  transition: transform 0.2s ease;
  display: block;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 28px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

/* Ações da Navbar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-emerald);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--accent-emerald-light);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-whatsapp-link:hover {
  background: #d1fae5;
  transform: translateY(-1px);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover {
  background: var(--bg-card-subtle);
  color: var(--text-main);
}

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

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-xl {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO SECTION (MODO CLARO) ───────────────────── */
.hero {
  padding: 70px 0 50px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Garantia & Badges de Confiança */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-dim);
  font-weight: 600;
}

.trust-badge-item strong {
  color: var(--text-main);
}

/* ── HUD COCKPIT EXECUTIVO (MODO CLARO) ──────────── */
.hero-hud-container {
  margin-top: 48px;
  width: 100%;
}

.hero-hud-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.hud-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.hud-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: var(--accent-emerald);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hud-kpi-box {
  background: var(--bg-card-subtle);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
}

.hud-kpi-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 4px;
  font-weight: 600;
}

.hud-kpi-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
}

.hud-kpi-sub {
  font-size: 0.72rem;
  color: var(--accent-emerald);
  font-weight: 700;
  margin-top: 2px;
}

.hud-live-feed {
  margin-top: 18px;
  background: #f8fafc;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hud-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hud-avatar-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffffff;
}

/* ── SEÇÃO PADRÃO & CABEÇALHOS ───────────────────── */
.section {
  padding: var(--section-gap) 0;
}

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

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--primary-light);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 12px;
}

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

/* ── MÉTRICAS DE IMPACTO (KPIS REAIS) ────────────── */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  text-align: left;
}

.roi-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-card);
}

.roi-card-highlight {
  border-color: rgba(79, 70, 229, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
}

.roi-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 6px;
}

.roi-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.roi-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── MÓDULOS REAIS DO SISTEMA ────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 70, 229, 0.3);
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}

.feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent-emerald);
  font-weight: bold;
}

/* ── PILARES DE GESTÃO / ABAS INTERATIVAS ────────── */
.pillars-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.pillar-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pillar-tab-btn:hover {
  background: var(--bg-card-subtle);
  color: var(--text-main);
}

.pillar-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.pillar-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.pillar-panel.active {
  display: block;
}

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

.pillar-card-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.pillar-text h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

.pillar-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.pillar-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pillar-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.92rem;
}

.pillar-features-list li .check-icon {
  color: var(--accent-emerald);
  font-weight: 800;
  flex-shrink: 0;
}

.pillar-visual {
  background: var(--bg-card-subtle);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── NICHOS ATENDIDOS (MODO CLARO) ───────────────── */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.niche-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: var(--shadow-hover);
}

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

.niche-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
}

.niche-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.niche-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.niche-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}

.niche-bullets li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.niche-bullets li::before {
  content: "•";
  color: var(--accent-emerald);
  font-weight: bold;
}

/* ── MOTOR DE CUSTOMIZAÇÃO ───────────────────────── */
.customization-box {
  margin-top: 48px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-card);
}

.custom-grid-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.custom-step-item {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-emerald);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── TABELA COMPARATIVA (MODO CLARO) ─────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

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

.comparison-table th, .comparison-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  background: var(--bg-card-subtle);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

.comparison-table th.col-fluxotarget {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.05rem;
}

.comparison-table td.col-fluxotarget {
  background: rgba(79, 70, 229, 0.02);
  font-weight: 600;
  color: var(--text-main);
}

.check-green {
  color: var(--accent-emerald);
  font-size: 1.15rem;
  font-weight: 800;
}

.check-cross {
  color: #ef4444;
  font-size: 1rem;
}

/* ── PLANOS & PREÇOS (MODO CLARO) ────────────────── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 44px;
}

.toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.toggle-label.active {
  color: var(--text-main);
}

.discount-tag {
  background: var(--accent-emerald);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  text-transform: uppercase;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}

.plan-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
  flex-grow: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--accent-emerald);
  font-weight: 800;
}

.plan-feature-off {
  opacity: 0.4;
}

.feature-x {
  color: #94a3b8;
}

/* ── CALCULADORA INTERATIVA (MODO CLARO) ─────────── */
.calc-card-container {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.calc-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-modules-selection h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.calc-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card-subtle);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.calc-checkbox-label:hover {
  background: #ffffff;
  border-color: var(--primary);
}

.calc-checkbox-label.checked {
  background: var(--primary-light);
  border-color: var(--primary);
}

.calc-checkbox-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
}

.calc-checkbox-left input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-module-tag-price {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.calc-summary-panel {
  background: var(--bg-card-subtle);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
}

.calc-price-total-box {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  margin-bottom: 20px;
}

.calc-price-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.calc-price-display {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.calc-price-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.calc-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ── FAQ ACCORDION (MODO CLARO) ──────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: inherit;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ── FINAL CTA & FOOTER ──────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  padding: 72px 0;
  text-align: center;
  border-radius: 24px;
  margin: 40px auto 80px;
  max-width: var(--container-max);
}

.final-cta .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #ffffff;
}

.final-cta .cta-subtitle {
  font-size: 1.1rem;
  color: #e0e7ff;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.final-cta .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.final-cta .btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.footer {
  background: #ffffff;
  border-top: 1px solid var(--card-border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 4px;
}

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  margin-top: 20px;
}

/* ── BOTÃO FLUTUANTE DE WHATSAPP ─────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

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

/* ── RESPONSIVIDADE PRECISA & REFINADA (MOBILE-FIRST) ─── */
@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-link { font-size: 0.86rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-grid-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root {
    --section-gap: 64px;
  }

  .nav-menu {
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    z-index: 1000;
  }
  
  .nav-menu.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
  }
  
  .nav-menu.open .nav-link {
    font-size: 1.02rem;
    padding: 6px 0;
    width: 100%;
  }
  
  .nav-menu.open .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
  }
  
  .nav-menu.open .nav-actions .btn,
  .nav-menu.open .nav-actions .nav-whatsapp-link {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .hamburger { display: flex; }
  
  .hero { padding: 48px 0 36px; }
  .hero-title { font-size: clamp(1.85rem, 6.5vw, 2.5rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  
  .hud-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  
  /* Abas de Pilares com Scroll Horizontal Suave (Estilo App Nativo) */
  .pillars-tabs-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-bottom: 24px;
    scrollbar-width: none;
  }
  .pillars-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .pillar-tab-btn {
    flex-shrink: 0;
    font-size: 0.86rem;
    padding: 9px 15px;
  }
  
  .pillar-card-content {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 24px;
  }
  .pillar-text h3 {
    font-size: 1.4rem;
  }
  
  .niches-grid { grid-template-columns: 1fr; }
  .niche-card { padding: 22px 18px; }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card { padding: 28px 20px; }
  
  .customization-box { padding: 28px 18px; }
  
  .final-cta {
    margin: 20px 12px 60px;
    padding: 44px 20px;
    border-radius: 18px;
  }
  .final-cta .cta-title { font-size: 1.85rem; }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    justify-content: center;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  
  .announcement-bar { padding: 6px 12px; font-size: 0.76rem; }
  .announcement-inner { gap: 6px; }
  
  .hero-title { font-size: clamp(1.75rem, 7.5vw, 2.15rem); letter-spacing: -0.5px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  
  .trust-badges { gap: 12px; flex-direction: column; align-items: flex-start; }
  
  .hud-grid { grid-template-columns: 1fr; }
  .hud-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hud-live-feed { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hud-live-feed .btn { width: 100%; }
  
  .custom-grid-steps { grid-template-columns: 1fr; }
  
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
