/* ═══════════════════════════════════════════════════════════════
   Inova Flows Imagens — Landing Page CSS Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variáveis e Design Tokens ────────────────────────────── */
:root {
  /* Cores de Fundo (Lumina Tech Noir - Obsidian & Charcoal) */
  --bg-primary: #131313;
  --bg-secondary: #0a0a0a;
  --bg-dark: #0e0e0e; 
  --bg-dark-accent: #0f172a;
  
  /* Cores de Texto (Contraste premium de cockpit) */
  --text-primary: #e5e2e1;
  --text-secondary: #bbcabf;
  --text-muted: #86948a;
  --text-light: #ffffff;
  --text-light-muted: #bbcabf;

  /* Cores de Acento (Calibradas sob as diretrizes do Stitch) */
  --accent-emerald: #10b981; 
  --accent-emerald-glow: rgba(16, 185, 129, 0.15);
  --accent-teal: #00d1ff; /* Neon Blue */
  --accent-amber: #ff6b00; /* Neon Orange */
  --accent-red: #ffb4ab; 
  --accent-purple: #8b5cf6;

  /* Bordas (Finas e sutis) */
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(16, 185, 129, 0.4);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-dark: linear-gradient(135deg, #131313 0%, #0a0a0a 100%);
  --gradient-text: linear-gradient(135deg, #10b981 0%, #00d1ff 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #00d1ff 100%);

  /* Sombras (Foco em Translucidez e Glows, não sombras pesadas) */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.15);
  --shadow-glow-red: 0 0 20px rgba(255, 180, 171, 0.1);

  /* Raio da Borda (Estritamente Sharp/Reto conforme Lumina Tech Noir) */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 0px;

  /* Transições (Cubic-bezier dinâmicos e rápidos) */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset e Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Tipografia Auxiliar ──────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-link {
  color: var(--accent-emerald);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.underline-link:hover {
  color: var(--accent-teal);
}

/* ─── Botões Customizados ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000000; /* Texto escuro em botão primário esmeralda espetacular */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.btn-secondary-pricing {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border);
  width: 100%;
}

.btn-secondary-pricing:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-emerald);
  transform: translateY(-1px);
}

.btn-nav {
  padding: 10px 18px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-nav:hover {
  border-color: var(--accent-emerald);
  background: rgba(255, 255, 255, 0.07);
}

/* ─── 1. Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ajuste do Logo idêntico ao app funcional */
.nav-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 70px;
  width: 220px;
  object-fit: cover;
  object-position: center;
  margin-left: -15px;
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

/* ─── 2. Hero Section (Fundo Escuro Premium) ────────────────── */
.hero-section {
  padding: 160px 0 100px 0;
  background: var(--gradient-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 5;
}

.hero-title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light-muted);
  font-weight: 400;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 16px;
}

.badge-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Mockup de Vídeo na Hero */
.hero-visual {
  z-index: 5;
  display: flex;
  justify-content: flex-end;
}

.video-mockup {
  width: 100%;
  max-width: 500px;
  background: #0a0a0a;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.1);
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.video-mockup:hover {
  transform: translateY(-5px);
}

.mockup-header {
  height: 36px;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-header .dot.red { background: var(--accent-red); }
.mockup-header .dot.yellow { background: var(--accent-amber); }
.mockup-header .dot.green { background: var(--accent-emerald); }

.mockup-url {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 10px;
  border-radius: 4px;
}

.mockup-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ─── 3. Seção de Satélites ────────────────────────────────── */
.coverage-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.coverage-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all var(--transition-fast);
}

.coverage-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
}

.coverage-icon {
  font-size: 28px;
}

.coverage-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.coverage-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Estilos Globais de Seção ────────────────────────────── */
.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 4. Comparativo de Esforço (SUPER VISUAL) ─────────────── */
.comparison-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.effort-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
  align-items: stretch;
}

.effort-box {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all var(--transition-normal);
  position: relative;
}

.effort-before {
  border-color: rgba(255, 180, 171, 0.15);
}

.effort-before:hover {
  box-shadow: var(--shadow-glow-red);
  border-color: var(--accent-red);
}

.effort-after {
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
}

.effort-after:hover {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-glow);
}

.effort-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.effort-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.effort-badge.red {
  background: rgba(255, 180, 171, 0.1);
  color: var(--accent-red);
}

.effort-badge.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-emerald);
}

.effort-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 800;
}

.text-red {
  color: var(--accent-red);
}

.text-neon {
  color: var(--accent-emerald);
}

/* Barras de esforço de progresso */
.progress-bar-container {
  width: 100%;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease-out;
}

.bg-red {
  background: var(--accent-red);
}

.bg-neon {
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
}

.effort-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.effort-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-icon-x {
  font-size: 16px;
  color: var(--accent-red);
  background: rgba(255, 180, 171, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon-check {
  font-size: 16px;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.effort-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.effort-before .effort-step p {
  opacity: 0.8;
}

.effort-after .effort-step p strong {
  color: var(--text-primary);
}

/* Animações */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ─── 5. Como Funciona ─────────────────────────────────────── */
.steps-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  padding: 40px 30px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.25);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ─── 6. Opções de Visualização e Processamento (SaaS Showcase) ─── */
/* ─── 6. Painel Interativo de Composições (SaaS Showcase) ────── */
.compositions-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.showcase-interactive {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

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

.showcase-tab-btn {
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-normal);
  outline: none;
  font-family: inherit;
  width: 100%;
}

.showcase-tab-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Abas ativas com cores específicas de acento e glows */
.showcase-tab-btn.active {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.02);
}

.showcase-tab-btn.active[data-tab="natural"] {
  border-left: 4px solid var(--accent-emerald);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.03), transparent);
  border-color: rgba(16, 185, 129, 0.3) var(--border) var(--border) var(--accent-emerald);
}

.showcase-tab-btn.active[data-tab="ndvi"] {
  border-left: 4px solid var(--accent-teal);
  background: linear-gradient(to right, rgba(0, 209, 255, 0.03), transparent);
  border-color: rgba(0, 209, 255, 0.3) var(--border) var(--border) var(--accent-teal);
}

.showcase-tab-btn.active[data-tab="agri"] {
  border-left: 4px solid var(--accent-amber);
  background: linear-gradient(to right, rgba(255, 107, 0, 0.03), transparent);
  border-color: rgba(255, 107, 0, 0.3) var(--border) var(--border) var(--accent-amber);
}

.showcase-tab-btn.active[data-tab="raw"] {
  border-left: 4px solid #64748b;
  background: linear-gradient(to right, rgba(100, 116, 139, 0.03), transparent);
  border-color: rgba(100, 116, 139, 0.3) var(--border) var(--border) #64748b;
}

.tab-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  background: var(--bg-secondary);
  transition: all var(--transition-normal);
}

.showcase-tab-btn.active .tab-icon {
  background: var(--bg-primary);
}

.icon-natural { color: var(--accent-emerald); }
.icon-ndvi { color: var(--accent-teal); }
.icon-agri { color: var(--accent-amber); }
.icon-raw { color: #64748b; }

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tab-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.2px;
}

.tab-text p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Simulador do App (Mockup de Navegador) */
.showcase-preview {
  width: 100%;
}

.preview-browser {
  background: #0a0a0a;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.01);
  overflow: hidden;
  width: 100%;
}

.preview-browser-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.browser-dot.red { background: var(--accent-red); }
.browser-dot.yellow { background: var(--accent-amber); }
.browser-dot.green { background: var(--accent-emerald); }

.browser-address {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 16px;
  border-radius: var(--radius-full);
}

.preview-app-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 380px;
}

/* Mockup App Sidebar */
.app-mockup-sidebar {
  background: #0e0e0e;
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
}

.mockup-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.mockup-sidebar-item {
  font-size: 12px;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mockup-sidebar-item.active {
  background: rgba(16, 185, 129, 0.08);
  color: var(--text-primary);
  font-weight: 500;
}

.sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-sidebar-item.active .sidebar-dot {
  background: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald);
}

.mockup-sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.mockup-sidebar-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.mockup-sidebar-value {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.mockup-sidebar-formats {
  margin-top: auto;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.mockup-sidebar-formats strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 4px;
}

.mockup-sidebar-formats p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

/* Área de Visualização do Mapa */
.app-mockup-map {
  position: relative;
  overflow: hidden;
  background: #05080f;
  height: 100%;
  cursor: crosshair;
}

/* Linha de Varredura Laser de Satélite */
.map-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--accent-emerald), transparent);
  box-shadow: 0 0 12px var(--accent-emerald), 0 0 4px var(--accent-emerald);
  opacity: 0;
  z-index: 12;
  pointer-events: none;
}

.app-mockup-map.scanning .map-scan-line {
  animation: scanSweep 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scanSweep {
  0% {
    top: 0%;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.map-satellite-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 150ms ease;
}

/* Controles de Zoom */
.map-zoom-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}

.map-zoom-btn {
  width: 32px;
  height: 32px;
  background: #0e0e0e;
  border: 1px solid var(--border);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.map-zoom-btn:hover {
  background: #151515;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Card de Status */
.map-info-status {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.status-dot {
  color: var(--accent-emerald);
  font-size: 14px;
  animation: pulse 2s infinite;
}

.status-details strong {
  display: block;
  font-size: 12px;
  color: white;
}

.status-details p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Mira de Coordenadas Interativa */
.map-crosshair-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.crosshair-lines {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.crosshair-lines::before,
.crosshair-lines::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}

/* Linha horizontal */
.crosshair-lines::before {
  top: 50%;
  left: -15px;
  width: 110px;
  height: 1px;
  transform: translateY(-50%);
}

/* Linha vertical */
.crosshair-lines::after {
  left: 50%;
  top: -15px;
  width: 1px;
  height: 110px;
  transform: translateX(-50%);
}

.crosshair-coords {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 6;
}

/* ─── 7. Para Quem É ───────────────────────────────────────── */
.target-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.target-card {
  padding: 32px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.target-card:hover {
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-glow);
}

.target-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.target-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.target-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ─── 8. Preços (Pix Consultivo) ───────────────────────────── */
.pricing-section {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.pricing-card {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-glow);
}

.pricing-card.card-featured {
  border: 1px solid var(--accent-emerald);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
}

.pricing-card.card-featured:hover {
  box-shadow: var(--shadow-glow);
}

.badge-featured {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-emerald);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
}

.card-header h3 {
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.price-container {
  margin: 30px 0;
  display: flex;
  align-items: baseline;
}

.price-container .currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-right: 4px;
}

.price-container .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.price-container .cent {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-container .period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 8px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-action .btn {
  width: 100%;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── 9. FAQ Section (Accordion) ────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.faq-arrow {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Active State */
.faq-item.active {
  border-color: var(--border-hover);
  background: var(--bg-secondary);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-emerald);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Ajuste dinâmico por JS */
}

/* ─── 10. CTA Final ────────────────────────────────────────── */
.cta-final-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  color: var(--text-light);
  position: relative;
}

.cta-final-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.cta-final-section p {
  font-size: 16px;
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

.cta-actions {
  margin-bottom: 24px;
}

.cta-support {
  font-size: 14px;
  color: var(--text-light-muted);
}

.whatsapp-link {
  color: var(--accent-emerald);
  font-weight: 600;
}

/* ─── 11. Footer ───────────────────────────────────────────── */
.footer {
  padding: 80px 0 40px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 70px;
  width: 220px;
  object-fit: cover;
  object-position: center;
  margin-left: -15px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── 12. Botão Flutuante do WhatsApp ──────────────────────── */
.whatsapp-float-btn {
  position: fixed;
  bottom: 40px; /* Afasta o botão da barra de tarefas inferior */
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #20ba59;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ─── Responsividade (Mobile-First / Breakpoints) ────────────── */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-subtitle {
    margin: 0 auto;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-visual {
    justify-content: center;
  }
  
  .effort-comparison {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .showcase-interactive {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-section {
    padding: 120px 0 80px 0;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 32px auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .preview-app-body {
    grid-template-columns: 1fr;
    height: auto;
  }

  .app-mockup-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .mockup-sidebar-title,
  .mockup-sidebar-divider,
  .mockup-sidebar-formats {
    display: none;
  }

  .mockup-sidebar-item {
    margin-bottom: 0;
  }

  .app-mockup-map {
    height: 300px;
  }
}

/* ─── Nova Estrutura de Grid para Composições ─── */
.compositions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.composition-card {
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.composition-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Bordas coloridas discretas nos cards ativos no hover */
.composition-card.card-natural:hover { border-color: var(--accent-emerald); }
.composition-card.card-ndvi:hover { border-color: var(--accent-teal); }
.composition-card.card-agri:hover { border-color: var(--accent-amber); }
.composition-card.card-raw:hover { border-color: #64748b; }

.comp-mockup-wrapper {
  background: #0e0e0e;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
}

.mini-browser-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.comp-map-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.comp-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-coords-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(10, 10, 10, 0.75);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  z-index: 5;
}

.comp-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.comp-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.comp-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.comp-card-content p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.comp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Responsividade do Grid */
@media (max-width: 1024px) {
  .compositions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── 8.5. CTA Intermediário de Acesso ──────────────────────── */
.platform-cta-section {
  padding: 0 0 80px 0; /* Margem superior removida para aproximar o quadro e centralizar melhor */
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.platform-cta-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(0, 209, 255, 0.01) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.06);
}

.platform-cta-title {
  font-size: 32px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.platform-cta-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.platform-cta-actions {
  display: flex;
  justify-content: center;
}

.platform-cta-actions .btn {
  padding: 16px 36px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .platform-cta-card {
    padding: 32px 20px;
  }
  
  .platform-cta-title {
    font-size: 24px;
  }
  
  .platform-cta-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .platform-cta-actions .btn {
    width: 100%;
    padding: 14px 20px;
  }
}


