﻿:root {
  --brand-primary: #0f4977;
  --brand-secondary: #18244f;
  --brand-accent: #48b4d1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

.font-heading {
  font-family: "Gabarito", system-ui, -apple-system, sans-serif;
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.animate-fade-in-up {
  animation: fadeInUp 0.9s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fadeInDown 0.9s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
