/* Definições Globais e Variáveis */
:root {
    --color-primary: #FFF159;
    --color-secondary: #0928C0;
    --color-text-dark: #0D0C38;
    --font-title: 'Anton', sans-serif;
    --font-heading: 'Bakbak One', cursive;
    --header-height: 162px;
    --max-content-width: 1440px;
}

/* ====== RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #0D0C38;
    line-height: 1.6;
    padding-top: var(--header-height);
}




/* ====== TOPO ====== */
.header-principal {
    background-color: #FFF159; /* Amarelo */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 162px;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.header__logo {
    position: absolute;
    left: 220px; /* Ajustado para 220px */
    top: 21px; /* Ajustado para 21px */
    width: 132px;
    height: 101px;
}

.titulo-site {
    font-family: 'Anton', sans-serif;
    font-size: 96px;
    color: #0D0C38;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}




.nav-principal ul {
    list-style: none;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    width: 100%;
}

.nav-principal li {
    margin: 0 20px;
}

.nav-principal a {
    color: #0928C0; /* Azul Forte */
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 0.72px;
}

.nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-secondary);
    text-decoration: none;
    letter-spacing: 0.72px;
    white-space: nowrap;
}

.nav__link:hover {
    opacity: 0.7;
}



/* ====== CONTEÚDO ====== */
.conteudo {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.titulo-pagina {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0D0C38;
    text-align: center;
}

.texto-pagina p {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}



/* ====== RODAPÉ ====== */
.rodape {
    background: #0D0C38;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.rodape ul {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.rodape a {
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
}

.rodape a:hover {
    opacity: 0.7;
}

.rodape p {
    font-size: 14px;
    opacity: 0.8;
}




/* ========================================================= */
/* ------------------ RESPONSIVIDADE (TABLET) ------------------ */
/* ========================================================= */
@media (max-width: 1200px) {
    .header__logo {
        width: 100px;
        height: 76px;
        left: 150px;
        top: 30px;
    }

    .header__title {
        font-size: 72px;
    }

    .nav__link {
        font-size: 20px;
    }

    .header__nav-top ul {
        gap: 25px;
    }

    .titulo-pagina {
        font-size: 32px;
    }

    .texto-pagina p {
        font-size: 16px;
    }

    .rodape ul {
        gap: 25px;
    }

    .rodape a {
        font-size: 20px;
    }

    .rodape p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }

    .header {
        height: var(--header-height);
    }

    .header__content-area {
        padding: 10px 0;
    }

    .header__logo-and-title {
        flex-direction: column;
        gap: 10px;
    }

    .header__logo {
        position: static;
        width: 80px;
        height: 60px;
        margin-bottom: 5px;
    }

    .header__title {
        position: static;
        transform: none;
        font-size: 32px;
        margin-bottom: 5px;
    }

    .header__nav-top {
        position: static;
        transform: none;
        width: 100%;
    }

    .header__nav-top ul {
        flex-wrap: wrap;
        gap: 10px 15px;
        justify-content: center;
    }

    .nav__link {
        font-size: 16px;
    }

    .conteudo {
        margin: 40px auto;
        padding: 0 15px;
    }

    .titulo-pagina {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .texto-pagina p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .rodape {
        padding: 30px 15px;
    }

    .rodape ul {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .rodape a {
        font-size: 18px;
    }

    .rodape p {
        font-size: 12px;
    }
}

/* ========================================================= */
/* ------------------ RESPONSIVIDADE (MOBILE) ------------------ */
/* ========================================================= */
@media (max-width: 480px) {
    :root {
        --header-height: 100px;
    }

    .header {
        height: var(--header-height);
    }

    .header__logo {
        width: 60px;
        height: 45px;
        margin-bottom: 5px;
    }

    .header__title {
        font-size: 24px;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .header__nav-top ul {
        gap: 8px 12px;
    }

    .nav__link {
        font-size: 14px;
    }

    .conteudo {
        margin: 30px auto;
        padding: 0 10px;
    }

    .titulo-pagina {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .texto-pagina p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .rodape {
        padding: 20px 10px;
    }

    .rodape ul {
        gap: 10px;
        margin-bottom: 12px;
    }

    .rodape a {
        font-size: 16px;
    }

    .rodape p {
        font-size: 11px;
    }
}
