body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #1B1E2A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
}

.header .logo, .header .right-logo {
    display: flex;
    align-items: center;
}

.header .logo img, .header .right-logo img {
    height: 40px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.menu a:hover {
    text-decoration: underline;
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Garante que o modal fique sobreposto ao restante do conteúdo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semitransparente */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    z-index: 1001; /* O conteúdo do modal fica acima do fundo */
}

.modal-header {
    font-size: 24px;
    margin-bottom: 20px;
    color: #111;
}

.modal-button {
    background-color: #d50000;
    color: white;
    border: none;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.modal-button:hover {
    background-color: #b71c1c;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo para dispositivos móveis */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        padding: 10px;
        text-align: center;
        border-top: 1px solid #222;
    }

    .menu a:first-child {
        border-top: none;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .header .right-logo {
        display: none;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}