@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@200;300;600&display=swap');
* {
    box-sizing: border-box;
}

:root {
    /*cores*/
    --amarelo: #FFC756;
    --laranja: #F66139;
    --lilas: #7F8FFE;
    --verde: #56B78C;
    --cinza-claro: #e4e4e4;
    --cinza-escuro: #959595;

    /* Fontes */

    --font-titulo: 'Work Sans', sans-serif;

}

body {
    font-family: var(--font-titulo);
    min-height: 100vh;
    background-color: var(--cinza-claro);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main__content {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Estilos compartilhados */

.menu__titulo_,
.rodape__titulo {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.menu__titulo {
    display: flex;
    align-items: center;
}

.menu__sub_titulo {
    margin-left: 8px;
}

img {
    opacity: 1;
    transition: 0.5s;
    border-radius: 50%;
}

img:hover {
    opacity: 0.9;
}

/* Header */

header {
    background-color: var(--cinza-claro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.menu {
    background-color: #fff;
    font-size: 18px;
    min-height: 80px;
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background-color 0.25s ease;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cinza-escuro);
    border-radius: 999px;
    position: relative;
}

.menu-toggle .bar::before,
.menu-toggle .bar::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--cinza-escuro);
    border-radius: 999px;
    position: absolute;
    left: 0;
}

.menu-toggle .bar::before {
    top: -8px;
}

.menu-toggle .bar::after {
    top: 8px;
}

.menu__sub_titulo {
    font-size: 18px;
}

.menu__item {
    list-style-type: none;
    font-weight: 400;
}

.menu__item a {
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
    color: var(--cinza-escuro);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
}

.menu__item a:hover {
    color: #fff;
    background-color: var(--amarelo);
    transform: translateY(-1px);
}

/* footer */

.div_footer {
    border: 1px solid rgb(199, 199 , 199);
    transform-origin: center 0.5px;
}

.rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 30px 0;
}

.rodape__credito p {
    margin: 0;
}

.rodape__lista {
    list-style-type: none;
    padding: 0;

}

.rodape__titulo{
    align-items: center;
}

@media screen and (max-width:920px) {
    header {
        display: block;
    }

    .menu__titulo {
        text-align: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .menu-toggle {
        display: inline-flex;
        margin: 0 auto 1rem;
    }

    .menu {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }

    header.menu-open .menu {
        display: flex;
    }

    .menu__item a {
        width: 100%;
    }
}

@media screen and (max-width:560px) {
    .menu {
        padding: 0.75rem 0.5rem;
    }

    .menu__item a {
        padding: 0.85rem 1rem;
        font-size: 16px;
    }

    .menu__titulo {
        margin-bottom: 0.75rem;
    }
}

@media screen and (max-width:1092px) {
    header {
        display: block;
    }

    .menu__titulo {
        text-align: center;
        justify-content: center;
    }
}