/*/webhic/vivahigienizado.com.br/vivahigienizado/core/static/css/style.css*/

/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Configuração geral do layout */
body {
    background-color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    color: #333;
    font-size: 16px; /* Tamanho base para o texto */
}

main {
    flex: 1;
}

/* Tipografia */
h1, h2 {
    color: #1D4F73;
    margin-bottom: 60px;
}

h2, h3 {
    font-size: 2rem;
    margin-top: 30px;
}

h4 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #ccc;
}

/* Botões */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    color: white;
    background-color: #206A8D;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #A7E3FA;
}

/* Estilo do menu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(32, 106, 141, 0.8);
    padding: 20px 25px;
    position: relative;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.navbar .logo img {
    width: 120px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Ícone do menu para mobile */
.menu-toggle {
    font-size: 2rem; /* Aumentar o ícone para garantir a visibilidade */
    color: white;
    display: none;
    cursor: pointer;
}

/* Rodapé */
footer {
    width: 100%;
    background-color: #D9D9D9;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

/* Redes Sociais no Rodapé */
footer .social-icons {
    margin-top: 15px;
}

footer .social-icons a {
    margin: 0 10px;
    color: #206A8D;
    font-size: 1.8rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #1D4F73;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;  /* Exibe o ícone de menu hamburguer */
        z-index: 2000;
        position: absolute;  /* Garante que o ícone fique em cima */
        top: 20px;
        right: 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #206A8D;
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 1999;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links.active {
        display: flex;
    }

    footer .social-icons a {
        font-size: 1.6rem;
        margin: 0 8px;
    }
}

/* Estilo para o menu de navegação */
.nav-links.active {
    display: flex;
}

/* Evita a compressão do layout com zoom */
body {
    font-size: 16px; /* Tamanho base para o texto */
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

/* Ajustes no menu para garantir que ele seja acessível mesmo em zoom */
.navbar {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(32, 106, 141, 0.8);
    padding: 20px 5%; /* Usar porcentagem para evitar compressão */
}

/* Menu Hamburguer */
.menu-toggle {
    font-size: 2rem; /* Aumentar tamanho do ícone para garantir a visibilidade */
}

