/* ==========================================================================
   PORTAL MKTEC & LANDING PAGE CRM RADAR — PREMIUM STYLE SYSTEM
   ========================================================================== */

:root {
  --font-title: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --letter-spacing-title: -0.015em;
  --letter-spacing-badge: 0.05em;

  /* Cores MKTec / App */
  --bg-main: #0b0f19; /* Azul chumbo escuro refinado */
  --bg-card: #161e30; /* Chumbo azulado com mais contraste */
  --bg-card-hover: #1e293f;
  --border-color: #24314c; /* Bordas finas e mais perceptíveis */
  --border-color-glow: rgba(255, 255, 255, 0.02);
  --text-primary: #f9fafb; /* Off-white */
  --text-secondary: #a3aab8; /* Cinza médio corporativo */
  --text-muted: #525f77; /* Cinza escuro */

  /* Cores de Destaque */
  --color-teal: #2dd4bf; 
  --color-teal-glow: rgba(45, 212, 191, 0.04);
  --color-indigo: #6366f1; 
  --color-indigo-glow: rgba(99, 102, 241, 0.04);
  --color-purple: #a855f7; 
  --color-purple-glow: rgba(168, 85, 247, 0.04);
  --color-orange: #f97316; 
  --color-orange-glow: rgba(249, 115, 22, 0.04);
  --color-emerald: #10b981; 
  --color-red: #ef4444; 
  --color-red-glow: rgba(239, 68, 68, 0.05);
}

/* RESET E BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.font-teal { color: var(--color-teal); }
.font-purple { color: var(--color-purple); }
.font-orange { color: var(--color-orange); }

/* HEADER PREMIUM (GLASSMORPHISM) */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 5rem;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mktec-brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: var(--letter-spacing-title);
  background: linear-gradient(135deg, #ffffff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-suffix {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-badge);
  border-left: 1px solid var(--text-muted);
  padding-left: 0.6rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.main-nav a.nav-cta {
  background-color: #ffffff;
  color: #000000;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
  background-color: #f4f4f5;
}

/* HERO SECTION (AURORA DESIGN) */
.hero-section {
  padding: 4rem 0 3rem;
  position: relative;
  background: #050507;
  border-b: 1px solid var(--border-color);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.hero-container-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
  width: 100%;
}

.hero-content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  gap: 1.75rem;
}

.hero-content-center h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-title);
  background: linear-gradient(135deg, #ffffff 40%, #c4c4c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content-center p {
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.badge-new {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--letter-spacing-badge);
  background-color: rgba(99, 102, 241, 0.1);
  color: var(--color-indigo);
  border: 1px solid rgba(99, 102, 241, 0.18);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-title);
  background: linear-gradient(135deg, #ffffff 40%, #c4c4c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

/* BOTÕES PREMIUM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-teal);
  color: #000000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #26bba8;
  box-shadow: 0 4px 12px rgba(45, 212, 191, 0.15);
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-color: var(--text-secondary);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 0.98rem;
  border-radius: 8px;
}

/* Mockup Ecossistema (Hero) */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  display: none;
}

.visual-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-header-sim {
  background-color: rgba(255, 255, 255, 0.015);
  border-b: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
}
.dot.red { background-color: var(--color-red); }
.dot.yellow { background-color: var(--color-orange); }
.dot.green { background-color: var(--color-emerald); }

.card-title-sim {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 0.5rem;
  letter-spacing: 0.08em;
}

.card-body-sim {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem;
  background-color: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.01);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.product-item.active {
  border-color: rgba(45, 212, 191, 0.2);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.03) 0%, transparent 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-icon.teal { background-color: rgba(45, 212, 191, 0.08); color: var(--color-teal); }
.product-icon.purple { background-color: rgba(168, 85, 247, 0.08); color: var(--color-purple); }
.product-icon.orange { background-color: rgba(249, 115, 22, 0.08); color: var(--color-orange); }

.product-icon i {
  width: 20px;
  height: 20px;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-status {
  font-size: 0.72rem;
  font-weight: 600;
}

/* SEÇÃO INTRO SOLUÇÕES */
.solucoes-intro {
  padding: 7rem 0 3rem;
}

.solucoes-intro h2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-title);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
}

/* PRODUTO ESTRELA: CRM RADAR */
.crm-radar-section {
  padding: 3rem 0 7rem;
}

.crm-radar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-b: 1px solid var(--border-color);
  padding-bottom: 2.5rem;
  margin-bottom: 4rem;
}

.crm-radar-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.radar-icon-box {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--color-indigo) 0%, #4f46e5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.radar-icon-box i {
  width: 26px;
  height: 26px;
}

.crm-radar-logo h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.crm-radar-logo p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.crm-badge-pro {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: rgba(45, 212, 191, 0.08);
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.18);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crm-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

/* GRÁFICO CARTESIANO REALISTA (CSS/HTML) */
.crm-radar-section {
  padding: 5rem 0 8rem;
  background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(45, 212, 191, 0.02) 0%, transparent 50%);
}

.crm-radar-header {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.crm-radar-header h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crm-radar-header .section-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 620px;
  line-height: 1.6;
}

.crm-badges-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.crm-badge-pro {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background-color: rgba(45, 212, 191, 0.05);
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.12);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

/* PAINEL DO DASHBOARD (LARGURA TOTAL) */
.crm-dashboard-panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  margin-bottom: 3.5rem;
  overflow: hidden;
  position: relative;
}

/* Barra de Ferramentas / Controles */
.dashboard-toolbar {
  background-color: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.panel-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.01);
}

.filter-btn.active {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Zoom Control */
.zoom-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zoom-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.zoom-slider {
  -webkit-appearance: none;
  background: #1a1a1f;
  height: 5px;
  width: 140px;
  border-radius: 9999px;
  outline: none;
}

.zoom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-teal);
  cursor: pointer;
  box-shadow: 0 0 8px var(--color-teal);
  transition: transform 0.15s ease;
}

.zoom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.zoom-percentage {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-teal);
  background-color: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  min-width: 45px;
  text-align: center;
}

/* Contêiner de Rolagem do Gráfico */
.plot-scroll-container {
  width: 100%;
  max-height: 620px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
  background-color: #060608;
}

.plot-scroll-container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.plot-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.plot-scroll-container::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 9999px;
}

.plot-canvas-wrapper {
  padding: 2.5rem 2.5rem 4rem 4.5rem;
  position: relative;
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 100%;
}

/* CANVAS CARTESIANO */
.plot-canvas {
  height: 420px;
  position: relative;
  background-color: #050507;
  border-bottom: 2px solid #3f3f46; /* Eixo X */
  border-left: 2px solid #3f3f46; /* Eixo Y */
  border-radius: 0.25rem;
}

/* Efeito de varredura do Radar */
.radar-effects-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  pointer-events: none;
  z-index: 1;
}

.radar-sweep-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.02) 50%, rgba(45, 212, 191, 0.08) 85%, rgba(45, 212, 191, 0.18) 100%);
  pointer-events: none;
  z-index: 2;
  animation: radarSweep 10s linear infinite;
  border-right: 1px solid rgba(45, 212, 191, 0.2);
}

@keyframes radarSweep {
  0% { left: -150px; opacity: 0; }
  2% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* SVG para desenho das trajetórias */
.trajectory-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Grid Lines Cartesiano de Fundo */
.grid-lines-h, .grid-lines-v {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 1;
}

.grid-lines-h {
  flex-direction: column;
  justify-content: space-between;
}

.grid-lines-v {
  flex-direction: row;
  justify-content: space-between;
}

.grid-lines-h .grid-line {
  width: 100%;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.grid-lines-v .grid-line {
  width: 0;
  height: 100%;
  border-left: 1px dashed rgba(255, 255, 255, 0.12);
}

/* Quadrantes de Zoneamento Térmico */
.quadrant {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 0.15rem;
  transition: background-color 0.3s ease;
  z-index: 2;
}

.quad-hot {
  background-color: rgba(99, 102, 241, 0.015);
  border-right: 1px dashed rgba(255, 255, 255, 0.04);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.quad-warn {
  background-color: rgba(249, 115, 22, 0.01);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.quad-cold {
  background-color: rgba(239, 68, 68, 0.015);
}

.quad-low {
  background-color: rgba(45, 212, 191, 0.01);
  border-right: 1px dashed rgba(255, 255, 255, 0.04);
}

.quad-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  opacity: 0.4;
}

/* Linhas de Referência Realistas */
.ref-line {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
  z-index: 2;
}

.ref-critical {
  border-left: 1.5px dashed rgba(251, 191, 36, 0.5); /* Amarelo */
}

.ref-freeze {
  border-left: 1.5px dashed rgba(239, 68, 68, 0.5); /* Vermelho */
}

.ref-label {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-top: 0.75rem;
  margin-left: 0.5rem;
}

.ref-critical .ref-label {
  background-color: rgba(251, 191, 36, 0.12);
  color: #fbd38d;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.ref-freeze .ref-label {
  background-color: rgba(239, 68, 68, 0.12);
  color: #feb2b2;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Ticks e Escalas nos Eixos */
.ticks-y {
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text-secondary);
  font-weight: 500;
}

.tick-y {
  transform: translateY(50%);
}
.tick-y:first-child { transform: translateY(0); }
.tick-y:last-child { transform: translateY(0); }

.ticks-x {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text-secondary);
  font-weight: 500;
}

.tick-x {
  transform: translateX(-50%);
}
.tick-x:first-child { transform: translateX(0); }
.tick-x:last-child { transform: translateX(0); }

.axis-y {
  position: absolute;
  right: calc(100% + 2.8rem);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.axis-x {
  position: absolute;
  top: calc(100% + 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* As Bolinhas do Gráfico (Dots com Halo) */
.lead-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 50%); /* Centraliza no ponto cartesiano */
  z-index: 10;
  transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot-core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot-ring {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  opacity: 0.25; /* Reduzido de 0.4 para 0.25 para evitar visual crypto */
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 1;
}

.lead-dot:hover .dot-core {
  transform: scale(1.35);
}

.lead-dot:hover .dot-ring {
  transform: scale(1.45);
  opacity: 0.6; /* Reduzido de 0.85 para 0.6 */
}

/* Cores das Bolinhas (Glows atenuados) */
.dot-hot .dot-core {
  background-color: var(--color-indigo);
  box-shadow: 0 0 6px rgba(99, 102, 241, 0.4); /* Glow reduzido */
}
.dot-hot .dot-ring {
  border-color: var(--color-indigo);
}

.dot-warm .dot-core {
  background-color: var(--color-emerald);
  box-shadow: 0 0 5px rgba(16, 185, 129, 0.4); /* Glow reduzido */
}
.dot-warm .dot-ring {
  border-color: var(--color-emerald);
}

.dot-cold .dot-core {
  background-color: var(--color-orange);
  box-shadow: 0 0 4px rgba(249, 115, 22, 0.4); /* Glow reduzido */
}
.dot-cold .dot-ring {
  border-color: var(--color-orange);
}

.dot-cold-alert .dot-core {
  background-color: var(--color-red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); /* Glow reduzido */
  animation: pulseBlink 1.4s infinite;
}
.dot-cold-alert .dot-ring {
  border-color: var(--color-red);
  animation: pulseRing 1.4s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulseBlink {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.8; }
}

/* Card de Detalhes do Lead (Hover) */
.lead-hover-card {
  position: absolute;
  width: 230px;
  background-color: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.95);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.lead-hover-card.visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.lead-hover-card h4 {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.5rem;
  color: #ffffff;
}

.hover-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}
.hover-row:last-child { margin-bottom: 0; }
.hover-label { color: var(--text-secondary); }
.hover-value { font-weight: 600; color: #ffffff; }

/* BENTO GRID DE RECURSOS */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.bento-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.bento-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.bento-card:hover .bento-icon {
  color: #ffffff;
  background-color: var(--color-teal);
  box-shadow: 0 0 15px var(--color-teal-glow);
  border-color: var(--color-teal);
}

.bento-card:nth-child(2):hover .bento-icon {
  color: #ffffff;
  background-color: var(--color-purple);
  box-shadow: 0 0 15px var(--color-purple-glow);
  border-color: var(--color-purple);
}

.bento-card:nth-child(3):hover .bento-icon {
  color: #ffffff;
  background-color: var(--color-orange);
  box-shadow: 0 0 15px var(--color-orange-glow);
  border-color: var(--color-orange);
}

.bento-icon i {
  width: 20px;
  height: 20px;
}

.bento-content h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.bento-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

.bento-card:hover .bento-glow {
  opacity: 0.65;
}

.teal-glow { background-color: var(--color-teal-glow); }
.purple-glow { background-color: var(--color-purple-glow); }
.orange-glow { background-color: var(--color-orange-glow); }

/* Argumento de Vendas CRM */
.crm-marketing-content h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.crm-marketing-content .desc-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.selling-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.point-item {
  display: flex;
  align-items: start;
  gap: 1.25rem;
}

.point-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255,255,255,0.01);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.point-icon i {
  width: 18px;
  height: 18px;
}

.point-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.point-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* SEÇÃO SIMULADOR DE ROI */
.simulador-roi-section {
  padding: 8rem 0;
  border-t: 1px solid var(--border-color);
  background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.015) 0%, transparent 60%);
}

.simulador-header {
  margin-bottom: 4.5rem;
}

.simulador-header h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #ffffff 40%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simulador-header .section-desc {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.simulador-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.simulador-inputs {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.simulador-panel-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.simulador-panel-title i {
  color: var(--color-teal);
  width: 20px;
  height: 20px;
}

.slider-group {
  margin-bottom: 2.25rem;
}

.slider-group:last-child {
  margin-bottom: 0;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  align-items: center;
}

.slider-badge {
  font-family: monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-teal);
  background-color: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.custom-slider {
  width: 100%;
  -webkit-appearance: none;
  background: #1a1a1f;
  height: 6px;
  border-radius: 9999px;
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-teal);
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-teal);
  transition: transform 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.simulador-results {
  background-color: rgba(12, 12, 14, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glow-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: rgba(45, 212, 191, 0.04);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
}

.results-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 1.5rem;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.comp-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.comp-value {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.comp-value.val-muted {
  color: var(--text-secondary);
}

.highlight-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.val-highlight {
  font-weight: 700;
  color: #ffffff;
}

.val-emerald {
  font-weight: 700;
  color: var(--color-emerald);
  font-size: 1.6rem;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
}

.incremental-box {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.06) 0%, rgba(45, 212, 191, 0.02) 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.incremental-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-emerald);
}

.incremental-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-top: 0.2rem;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.incremental-badge {
  font-size: 0.72rem;
  background-color: var(--color-emerald);
  color: #000000;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* SEÇÃO PORTFÓLIO (ECOSSISTEMA MKTec) */
.portfolio-section {
  padding: 8rem 0;
  border-t: 1px solid var(--border-color);
  background: radial-gradient(circle at 10% 20%, rgba(168, 85, 247, 0.02) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.02) 0%, transparent 40%);
}

.portfolio-header h2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

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

/* Cards Portfólio Apple-Style */
.portfolio-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.card-status {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.card-status.active {
  background-color: rgba(45, 212, 191, 0.08);
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.15);
}

.card-status.upcoming {
  background-color: rgba(255,255,255,0.015);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.card-icon i {
  width: 22px;
  height: 22px;
}

.portfolio-card h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #ffffff;
}

.portfolio-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
}

.card-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
  margin-top: 0.5rem;
}

.card-link i {
  width: 16px;
  height: 16px;
}

/* Efeito de cores específicas nos cards (PLAN-AI e AI-Strada) */
.portfolio-card.border-teal:hover {
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 15px 35px rgba(45, 212, 191, 0.04);
}

.portfolio-card.border-purple:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.04);
}

.portfolio-card.border-orange:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.04);
}

.portfolio-card.border-amber:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.04);
}

.amber-bg {
  background-color: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

/* Classes para colorização dos links dos cards */
.teal-link {
  color: var(--color-teal);
}
.teal-link:hover {
  color: #14b8a6;
}

.purple-link {
  color: var(--color-purple);
}
.purple-link:hover {
  color: #9333ea;
}

.orange-link {
  color: var(--color-orange);
}
.orange-link:hover {
  color: #ea580c;
}

.amber-link {
  color: #f59e0b;
}
.amber-link:hover {
  color: #d97706;
}

/* SEÇÃO DE CONTATO */
.contact-section {
  padding: 5rem 0 8rem;
  border-t: 1px solid var(--border-color);
}

.contact-card {
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(99, 102, 241, 0.03) 100%);
  padding: 3.5rem;
}

.contact-info h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-title);
  line-height: 1.15;
}

.contact-info p {
  font-size: 0.98rem;
  line-height: 1.6;
}

/* RODAPÉ PORTAL */
.main-footer {
  background-color: #030304;
  border-t: 1px solid var(--border-color);
  padding: 4.5rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.footer-copy {
  line-height: 1.6;
  max-width: 480px;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 340px;
  line-height: 1.45;
  background-color: rgba(255,255,255,0.005);
  border: 1px solid rgba(255,255,255,0.01);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
}

.footer-security i {
  color: var(--color-teal);
  width: 20px;
  height: 20px;
}

.admin-footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.admin-footer-link:hover {
  color: var(--color-teal);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .simulador-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .dashboard-toolbar {
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .toolbar-left {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .filter-btn {
    flex-grow: 1;
    text-align: center;
    padding: 0.4rem 0.6rem;
  }

  .zoom-control {
    width: 100%;
    justify-content: space-between;
  }

  .zoom-slider {
    flex-grow: 1;
    width: auto;
    max-width: 180px;
  }

  .plot-canvas-wrapper {
    padding: 1.5rem 1rem 3rem 2.8rem; /* Paddings otimizados no mobile */
  }
  
  .ticks-x, .ticks-y {
    font-size: 0.65rem;
  }

  .axis-y {
    right: calc(100% + 1.8rem);
    font-size: 0.62rem;
  }

  .axis-x {
    top: calc(100% + 1.8rem);
    font-size: 0.62rem;
  }
  
  .contact-card {
    padding: 2.5rem 2rem;
    text-align: center;
    flex-direction: column;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .crm-radar-header h2 {
    font-size: 2.4rem;
  }

  .simulador-header h2 {
    font-size: 2.2rem;
  }

  .simulador-inputs {
    padding: 1.5rem;
  }

  .simulador-results {
    padding: 1.5rem;
  }

  .incremental-box {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .incremental-badge {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   SEÇÃO SOBRE A MKTEC (MANIFESTO CORPORATIVO)
   ========================================================================== */
.manifesto-section {
  padding: 6rem 0;
  background-color: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
}

.manifesto-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.manifesto-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.manifesto-header h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-title);
  color: #ffffff;
}

.manifesto-lead-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.manifesto-accent-line {
  width: 40px;
  height: 3px;
  background-color: var(--color-teal);
  border-radius: 9999px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.6;
}

.manifesto-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.manifesto-quote {
  border-left: 3px solid var(--color-teal);
  padding-left: 1.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.manifesto-quote p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.manifesto-quote cite {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Responsividade do Manifesto */
@media (max-width: 992px) {
  .manifesto-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .manifesto-card {
    padding: 2rem;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .manifesto-header h2 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   DARK NEON & GLASSMORPHISM (AUTOMOTO & HOME)
   ========================================================================== */

.dark-neon-bg {
  background-color: var(--bg-main);
  background-image: radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08), transparent 25%),
                    radial-gradient(circle at 85% 30%, rgba(168, 85, 247, 0.08), transparent 25%);
}

.glass-header {
  background-color: rgba(11, 15, 25, 0.65) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.glass-card, .glass-panel {
  background-color: rgba(22, 30, 48, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.btn-glow {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.6);
  transform: translateY(-2px);
}

.btn-outline-neon {
  background: transparent;
  border: 1px solid var(--color-indigo);
  color: var(--color-indigo);
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.1);
}
.btn-outline-neon:hover {
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.badge-neon {
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-indigo);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}
.mockup-header .dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }
.mockup-title {
  margin-left: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: monospace;
}

.simulacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.data-point {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.02);
}
.data-point span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.data-point strong {
  font-size: 1.1rem;
  color: var(--text-primary);
}
.text-emerald { color: var(--color-emerald) !important; }
.text-red { color: var(--color-red) !important; }

/* ==========================================================================
   GATEWAY DE PAGAMENTO & PRICING GRID SYSTEM (SITE 001)
   ========================================================================== */

.pricing-section {
  padding: 5rem 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #1e2942 0%, #161e30 100%);
  border: 2px solid var(--color-indigo);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-trial {
  background: rgba(45, 212, 191, 0.15);
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.4);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.25);
}

.badge-popular {
  background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-purple) 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.badge-pitch {
  background: rgba(249, 115, 22, 0.15);
  color: var(--color-orange);
  border: 1px solid rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.25);
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 2.7rem;
}

.pricing-price {
  margin: 1.8rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-custom {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: -0.02em;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-features li i {
  color: var(--color-teal);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.btn-pricing {
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, var(--color-indigo) 0%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-pricing-primary:hover {
  background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-pricing-teal {
  background: rgba(45, 212, 191, 0.12);
  color: var(--color-teal);
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.btn-pricing-teal:hover {
  background: rgba(45, 212, 191, 0.25);
  border-color: var(--color-teal);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.2);
}

.btn-pricing-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.btn-pricing-orange:hover {
  background: rgba(249, 115, 22, 0.25);
  border-color: var(--color-orange);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

/* CHECKOUT MODAL & DRAWERS */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.checkout-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-card {
  background: #111827;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-overlay.active .checkout-card {
  transform: translateY(0) scale(1);
}

.checkout-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkout-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.checkout-header-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.payment-tab-btn {
  flex: 1;
  padding: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.payment-tab-btn.active {
  background: var(--bg-card);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

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

@media (max-width: 640px) {
  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

.checkout-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.checkout-form input, .checkout-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #0b0f19;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.checkout-form input:focus, .checkout-form select:focus {
  border-color: var(--color-indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.qr-code-box {
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  display: inline-block;
  margin: 1rem 0;
}

