@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*-------------------------------------------Configurações Globais*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Montserrat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.removeListStyle {
    list-style-type: none;
}

h1, h2, h3 {
    font-weight: 700;
    color: #1e397e;
}
/*------------------------------ Classes GLOBAIS*/

/*----------------------------------------------*/
.hamburguer {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #1e397e;
    cursor: pointer;
    width: 30px;
}

.hamburguer::before,
.hamburguer::after {
    content: " ";
    display: block;
    width: 100%;
    height: 3px;
    background: #1e397e;
    margin-top: 5px;
}

/*------------------------------------------Configurações do NAV*/
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand img {
    width: 60px;
    margin-right: 15px;
}

.nav-brand h1 {
    font-size: 1.5rem;
}

.nav-list {
    display: flex;
    list-style-type: none;
    gap: 15px;
}
.nav-link {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #1e397e;
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hamburguer {
        display: block;
        z-index: 2000;
        margin: 13px;
    }

    .nav-cel {
        z-index: 1500;
        position: fixed;
        top: 0;
        right: 0;

        width: 100vw; 
        height: 100vh; 
        background-color: #f8f9fa;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        transform: translateX(100%);
        transition: transform 0.5s ease-in-out; 
    }

    .nav-cel.active {
        transform: translateX(0);
    }
    
    .nav-cel .nav-link {
        font-size: 1.8rem;
        color: #1e397e;
    }

    .navigation {
        padding: 10px 25px;
    }
}

/*----------------------------------------Section > HERO */
.hero {
    background-image: url("../images/fundo.png");
    background-size: cover;
    background-position: center;
    height: 60vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
}
.hero h2 {
    font-size: 3rem;
    color: #fff;
}

/*----------------------------------------Section > container quem somos*/

.whoWeAre {
    color: #333;
    background-color: #f8f9fa;
    padding: 120px 80px;
}

.whoWeAre p {
    margin: auto;
    text-align: left;
    max-width: 1050px;
}

.whoWeAre h2 {
    text-align: center;
    padding-bottom: 15px;
}

/*--------------------------------------------------Container nosso objetivo*/
.about {
    margin-top: 25px;
    margin-bottom: 25px;
    color: #333;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 10px;
}

.about div > h2 {
    margin-bottom: 15px;
}

.about div > p {
    text-align: left;
    max-width: 900px;
}

@media (max-width: 768px) {
        .about {
            display: flex;
            flex-direction: column;
        }

        .about iframe {
            border-radius: 8px;
            max-width: 100%;
            height: 181px;
            aspect-ratio: 16 / 9;
            display: block;
        }

        .hero h2 {
        font-size: 2.8rem;
        }
}

@media (min-width: 768px) {
        .about iframe {
            border-radius: 8px;
            width: 560px;
            height: 315px;
        }
}
/*-----------------------------------------------Configurações do Footer*/
.div_footer_style {
    background-color: #192a56;
    color: #f4f4f9;
    text-align: center;
    padding: 40px 20px;
}

.iconStyleFooter {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 8px 0px 8px 0px;
}

footer p > a {
    text-decoration: none;
    color: inherit;
}

footer a > img:hover {
    transform: scale(1.1);
    
}

footer a > img {
    width: 50px;
    transition: all 0.3s ease;
}
