@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --background: 0 0% 100%;
  --foreground: 234 100% 20%;

  --card: 0 0% 100%;
  --card-foreground: 234 100% 20%;

  --popover: 0 0% 100%;
  --popover-foreground: 234 100% 20%;

  --primary: 237 100% 20%;
  --primary-foreground: 0 0% 100%;

  --secondary: 210 60% 95%;
  --secondary-foreground: 237 100% 20%;

  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;

  --accent: 0 100% 50%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --success: 145 63% 42%;
  --success-foreground: 0 0% 100%;

  --border: 0 0% 90%;
  --input: 0 0% 90%;
  --ring: 237 100% 20%;

  --radius: 0.75rem;

  --soft-bg: 210 60% 95%;
  --dark-blue: 234 100% 12%;
}

.dark {
  --background: 234 100% 8%;
  --foreground: 0 0% 100%;

  --card: 234 100% 10%;
  --card-foreground: 0 0% 100%;

  --popover: 234 100% 10%;
  --popover-foreground: 0 0% 100%;

  --primary: 237 100% 35%;
  --primary-foreground: 0 0% 100%;

  --secondary: 234 100% 15%;
  --secondary-foreground: 0 0% 100%;

  --muted: 234 100% 12%;
  --muted-foreground: 215 20.2% 65.1%;

  --accent: 0 100% 60%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 100%;

  --success: 145 63% 30%;
  --success-foreground: 0 0% 100%;

  --border: 234 100% 20%;
  --input: 234 100% 20%;
  --ring: 237 100% 35%;

  --soft-bg: 234 100% 12%;
  --dark-blue: 234 100% 5%;
}

* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-fade-in {
  animation: fade-in 0.5s ease-out both;
}

/* Accordion Transição Suave */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* Suficiente para o texto do FAQ */
  opacity: 1;
}

.accordion-trigger svg {
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-trigger svg {
  transform: rotate(180deg);
}

/* WhatsApp float styles */
#whatsapp-float {
  background-color: #010066;
}

/* Loader Spin */
.loader-spin {
  border-top-color: transparent;
  border-right-color: transparent;
}
