.body{
    margin: 0;
    padding: 0;
    background-color: #F0F0F0;
}

.header {
    margin: 0;
    padding: 0;
    background-color: var(--color-blue-main);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
    margin-left: 80px;
    text-decoration: none;
}

.header-logo .img {
    width: 50px;
    height: auto;
}

.header-logo .text {
    display: flex;
    flex-direction: column;
}

.header-logo .reserva-salas {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.header-logo .reunioes-seplag {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-links {
    display: flex;
    margin-right: 80px;
    gap: 20px;
}

.menu-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-cadastro{
    font-weight: 500;
}

.menu-login{
    font-weight: 700;
}

.menu-hamburguer.menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-right: 6%;
}

.linha {
    height: 3px;
    width: 25px ;
    margin-bottom: 5px;
    background-color: #fff;
}

@media (max-width: 1250px) {
    .menu-hamburguer.menu {
        display: flex;
    }
    .menu-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 300px;
        background-color: var(--color-blue-main);
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        z-index: 100;
        color: white;
        text-decoration: none;
        font-size: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        transition: right 0.3s ease-in-out;
        margin-right: 0;
    }

    .menu-links.active {
        display: flex;
        right: 0;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: none;
        z-index: 99;
    }
    .links.menu.a.barra {
        display: none;
    }
    .svg-menu.links {
        margin-right: 10px;
    }
}
@media (max-width: 580px) {
    .menu-links {
        width: 200px;
        font-size: 5px;
        gap: 10px;
        padding: 10px;
    }
}
@media (max-width: 340px) {
    .menu-links {
        width: 100px;
        font-size: 2px;
    }
}