body {
    /* font-family: 'Zodiak', sans-serif; */
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    min-height: 100vh;
    background-color: #fcfcfc;
    color: #475467;
}


.container {
    width: 100%;
}

/* Estiliza a barra de navegação */
.header {
    position: relative;
    background-color: #325653;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/imgs/fundo.jpg");
    background-size: cover;
    background-position: top;
    opacity: 0.2;
    z-index: 0;
}

.header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1111px;
    position: relative;
    z-index: 1;
}

nav {
    position: relative;    
}

/* Ajuste da logo */
.header img {
    height: 40px;
    max-width: 120px;
}

/* Estiliza o menu de navegação */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px; /* Espaço entre os links */
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.nav-menu a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 11px;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Botão do menu móvel */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 2;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header {
        padding: 0 10px;
    }

    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 62px;
        left: 0;
        width: 100%;
        text-align: center;
        background-color: #325653;
        opacity: 1;
        padding: 15px 0;
        margin: 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
}
