/* Reset e Base */
html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

/* Cores da Marca */
.bg-brand-primary {
  background-color: #01335b;
}

.bg-brand-accent {
  background-color: #f86534;
}

.bg-brand-lightBlue {
  background-color: #c4f4fc;
}

.bg-brand-success {
  background-color: #16a34a;
}

.text-white {
  color: #fff;
}

.text-brand-primary {
  color: #01335b;
}

.text-brand-accent {
  color: #f86534;
}

.text-brand-lightBlue {
  color: #c4f4fc;
}

.text-brand-dark {
  color: #01335b;
}

/* Animações */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #c4f4fc;
}

::-webkit-scrollbar-thumb {
  background: #f86534;
  border-radius: 6px;
  border: 3px solid #c4f4fc;
}

/* FAQ Animation */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-content.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: block;
}

.faq-icon.active {
  background-color: #f86534;
}

.faq-icon.active i {
  color: white;
}

/* Selection */
::selection {
  background-color: #f86534;
  color: white;
}

