/* Estilos Gerais */
body {
    background-color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

body p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Cabeçalho */

.cabecalho {
    background-color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-link img {
    width: 320px;
    height: auto;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;

    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.menu-paginas {
    text-decoration: none;
    color: #1C3D5A;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

.menu-paginas:hover, #pagina-atual {
    background-color: #1C3D5A;
    color: white;
}

nav {
    background-color: #f9f9f9;
    padding: 10px;
    position: absolute;
    right: 17%;
}

/* Contêiner para o botão e o menu */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilo do botão de menu (ícone de hambúrguer) */
.menu-toggle {
    display: none; /* Oculta o botão em telas maiores */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* Estilo do ícone de hambúrguer */

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #000;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-lateral {
    display: none;
}

/* Corpo Principal */

.corpo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 170px auto 40px auto;
    width: 90%;
    max-width: 1200px;
    min-height: 600px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
    padding: 20px;
}

#titulo {
    font-size: 1.9em;
    margin-bottom: 20px;
    color: rgb(11 115 217/var(--tw-text-opacity,1));
}	
#sub-titulo {
    font-size: 1.7em;
    margin-bottom: 20px;
    color: rgb(11 115 217/var(--tw-text-opacity,1));
}

#texto-1 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 85%;
}	
#texto-2 {
    font-size: 0.8em;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 85%;

}

.banner {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}
/* Rodapé */
footer {
    background-color: #1C3D5A;
    color: #f1f1f1;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 20px;
}

.footer-info, .footer-services {
    text-align: left;
    max-width: 300px;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f8b400;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Botão "Voltar ao topo" */
#btn-topo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1C3D5A;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#btn-topo:hover {
    background-color: #2c5a7d;
}

/* Responsividade */
/* Responsividade */
@media (max-width: 768px) {
    .cabecalho {
        flex-direction: column;
        text-align: center;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-info, .footer-services {
        text-align: center;
    }
}
@media (max-width: 768px) {

    .logo {
        scale: 1;
        margin: 0 auto;
    }
    .menu-hamburguer{
        display: flex;
        position: fixed;
        z-index: 1500;
        top: 5px;
        left: 5px;
        width: 25px;
        height: 25px;
    }
    .cabecalho {
        height: 100px;
    }
    .corpo {
        margin: 170px auto 40px auto;
    }
    .menu-toggle {
        display: block; /* Exibe o botão em telas menores */
        position: absolute;
    }

    .menu{
        display: none; /* Oculta o menu em telas menores */
    }

    .menu-lateral.active {
        display: flex; /* Exibe o menu quando a classe "active" é adicionada */
        z-index: 1500;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.85);
    }
    .banner {
        width: 100%;
    }

    .menu-lista {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        margin: 0 auto;

        list-style: none;

    }

    .menu-lista a {
        text-decoration: none;
        font-size: 32px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: bold;

        color: #1C3D5A;
        padding: 20px;

        transition: 0.1s ease-out;
        border-radius: 5px;
    }
    .menu-lista a:hover {
        background-color: #1C3D5A;
        color: rgba(255, 255, 255, 1);
    }

    #texto-1 {
        font-size: 0.9em;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        width: 85%;
    }
    #titulo {
        font-size: 1em;
        justify-content: center;
    }
    #sub-titulo {
        font-size: 1em;
        justify-content: center;
    }
}