/* ─── BASE — Reset, tipografia e globals ────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: var(--fundo);
  color: var(--texto);
  overflow-x: hidden;
  /* Sticky footer em páginas internas */
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* Conteúdo principal empurra o footer à base da viewport */
main {
  flex: 1;
  min-height: 0;
}

/* Seções genéricas */
section { padding: 80px 24px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
  color: var(--texto);
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
}

/* Divisor decorativo */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--amarelo);
  opacity: 0.3;
}

.section-divider span {
  font-size: 0.65rem;
  color: var(--amarelo);
  opacity: 0.6;
}
