@charset "UTF-8";

/* Estilos de Alto Padrão & Sofisticação - Otimize Contabilidade */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand-black: #04070E;        /* Preto profundo sofisticado */
  --brand-navy: #080E1C;         /* Preto azulado nobre */
  --brand-surface: #0E172A;      /* Superfície dos cards */
  --brand-blue: #3798F1;         /* Azul elétrico oficial da logo */
  --brand-fresh: #38BDF8;        /* Azul frescor / Ice cyan moderno */
  --brand-fresh-glow: #06B6D4;   /* Toque fresco de luminosidade */
  --accent-emerald: #10B981;     /* Verde prosperidade e WhatsApp */
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #E2E8F0;
  background-color: var(--brand-black);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Fundo Luxuoso com Iluminação Ambiente Azul Frescor */
.luxury-bg {
  background-color: #04070E;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(55, 152, 241, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(56, 189, 248, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(55, 152, 241, 0.06), transparent 50%);
}

/* Glassmorphism de Alto Padrão */
.glass-luxury-header {
  background: rgba(4, 7, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-luxury-card {
  background: rgba(12, 20, 37, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-luxury-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 25px 50px -12px rgba(55, 152, 241, 0.18);
  transform: translateY(-3px);
}

/* Gradientes Dinâmicos de Alto Padrão */
.text-gradient-luxury {
  background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 45%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-fresh {
  background: linear-gradient(135deg, #3798F1 0%, #38BDF8 50%, #67E8F9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient-fresh {
  background: linear-gradient(135deg, #3798F1 0%, #0284C7 50%, #0369A1 100%);
  box-shadow: 0 10px 25px -5px rgba(55, 152, 241, 0.4);
  transition: all 0.3s ease;
}

.btn-gradient-fresh:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #3798F1 50%, #0284C7 100%);
  box-shadow: 0 15px 35px -5px rgba(56, 189, 248, 0.5);
  transform: translateY(-1.5px);
}

/* Botão Flutuante de WhatsApp */
.whatsapp-pulse {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Custom Sliders Dinâmico com a cor da Logo e Azul Frescor */
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background: #111A2E;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8 0%, #3798F1 100%);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
  border: 3px solid #ffffff;
  transition: transform 0.15s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

input[type=range]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8 0%, #3798F1 100%);
  cursor: pointer;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
  border: 3px solid #ffffff;
}

/* Scrollbar Personalizada Sofisticada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #04070E;
}
::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3798F1;
}

/* Efeito Glow Sofisticado */
.glow-fresh {
  box-shadow: 0 0 35px -5px rgba(56, 189, 248, 0.25);
}

.glow-blue {
  box-shadow: 0 0 35px -5px rgba(55, 152, 241, 0.3);
}