@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ===== Reset Básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Variáveis globais ===== */
:root {
    --cor-primaria: #4277cb; /* Azul principal */
    --cor-secundaria: #e87232; /* Laranja destaque */
    --cor-destaque: #83ba32; /* Verde vibrante */
    --cor-profunda: #1e3f74; /* Azul profundo */
    --cor-fundo: #f8f9fa; /* Fundo neutro claro */
    --cor-texto: #222; /* Texto padrão */
    --cor-texto-claro: #fff; /* Texto sobre fundos escuros */
    --font-principal: "Montserrat", Arial, sans-serif;
    --cor-primaria-rgb: 0, 95, 163;
    --font-size-base: 16px;
    --font-size-small: 0.95rem;
    --font-size-normal: 1rem;
    --font-size-medium: 1.15rem;
    --font-size-large: 2.2rem;
    --font-size-h1-mobile: 1.45rem;
    --font-size-h2: 1.15rem;
    --font-size-h2-mobile: 1.05rem;
}


/* ===== Corpo ===== */
body {
    font-family: var(--font-principal);
    background: var(--cor-profunda);
    color: var(--cor-texto);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@media screen and (max-width: 900px) {
    body {
        flex-direction: column;
    }

    h1 {
        font-size: 1.5rem;
    }
}

/* ===== Container geral ===== */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
} */
