/* Fonte geral */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: hsl(210, 20%, 98%);
  --fg: hsl(215, 25%, 27%);
  --primary: hsl(16, 78%, 54%);
  --primary-light: hsl(16, 85%, 62%);
  --primary-dark: hsl(16, 75%, 45%);
  --accent: hsl(263, 70%, 71%);
  --accent-light: hsl(263, 80%, 80%);
  --gray-warm: hsl(30, 10%, 96%);
  --gray-text: hsl(215, 16%, 47%);
  --navy: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg);
  color: var(--fg);
}

/* Navbar */

.navbar-custom {
  background-color: #ffffff;
}

.navbar-custom .navbar-brand {
  font-weight: 700;
}

.navbar-custom .nav-link-custom {
  color: #212529;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-custom .nav-link-custom:hover {
  color: #212529;
}

.navbar-custom .nav-link-custom.active {
  color: var(--accent);
}


/* Hero e seções */

.hero-gradient {
  background: linear-gradient(
    135deg,
    var(--gray-warm) 0%,
    #e5edff 40%,
    #eff6ff 100%
  );
}

.section-gradient {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--gray-warm) 100%
  );
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cards / hovers */

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.25rem 2.5rem rgba(15, 23, 42, 0.12);
}

/* Ícones redondos */

.icon-circle {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-sm {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fundo navy CTA */

.bg-navy {
  background: radial-gradient(circle at top left, #1e3a8a, #020617);
}

.bg-footer {
  background-color: rgb(43 45 66 / var(--tw-bg-opacity, 1));
}

/* Animações simples */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out both;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out both;
}

/* Utilitários simples */

.text-muted-soft {
  color: var(--gray-text);
}

.badge-soft {
  background-color: rgba(248, 250, 252, 0.9);
  color: var(--gray-text);
}

/* Botões “hero” aproximando o design original */

.btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  color: #fff;
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.btn-hero-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-hero-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Espaçamentos padrão */

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
