/**
 * ========================================================================
 * NÚCLEO DE SOLUÇÕES | VERTICAL MARKETING
 * Folha de Estilos Complementar Vanilla & Design System
 * ========================================================================
 */

:root {
  --color-navy: #0F172A;
  --color-slate-dark: #1E293B;
  --color-slate-border: #334155;
  --color-slate-text: #94A3B8;
  --color-orange-brand: #F97316;
  --color-orange-dark: #EA580C;
  --color-light-bg: #F8FAFC;
  --color-white: #FFFFFF;
}

/* Reset básico e suavização de renderização */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-navy);
  color: #F1F5F9;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
}

/* Foco visível acessível */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-orange-brand);
  outline-offset: 2px;
}

/* Animações e Transições */
.transition-smooth {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover Microinterações */
.hover-card-elevation {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hover-card-elevation:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

/* FAQ Accordion Transitions */
.faq-content {
  transition: max-height 0.3s ease-out, opacity 0.25s ease-out;
}

/* Custom scrollbar para navegadores desktop */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0B1120;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #F97316;
}

/* Ajustes de impressão limpa */
@media print {
  header, footer, aside, #btn-floating-whatsapp {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
}
