/* Fonts */
@font-face {
    font-family: Montserrat;
    src: url(../assets/fonts/Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
    font-family: MontserratBold;
    src: url(../assets/fonts/Montserrat/static/Montserrat-Bold.ttf);
}

@font-face {
    font-family: MontserratSemiBold;
    src: url(../assets/fonts/Montserrat/static/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: MontserratMedium;
    src: url(../assets/fonts/Montserrat/static/Montserrat-Medium.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: PoppinsLight;
    src: url(../assets/fonts/Poppins/Poppins-ExtraLight.ttf);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.layout-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADER */

.header-section {
    width: 100vw;

    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section .header-nav {
    width: 40%;

    display: flex;
    justify-content: space-between;
}

.active {
    font-family: MontserratSemiBold !important;

    color: #155F95 !important;
}

.header-section .header-nav a {
    font-family: Montserrat;

    color: black;
    font-size: 16px;

    text-decoration: none;

    text-transform: uppercase;
}


.header-section .header-nav a:hover {
    font-family: MontserratSemiBold;

    color: #155F95;
}

#menuToggle {
    display: none;
}

@media screen and (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .layout-grid {
        width: 100%;
    }

    #menuToggle {
        display: flex;
        width: 10%;
    }

    .header-section {
        width: 100vw;
        padding: 0px 20px;
    }

    .header-nav {
        position: absolute;
        top: 100px;
        right: 0px;
        background-color: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 999;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .header-nav.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* FOOTER */

footer {
    background-color: #0A3859;

    width: 100vw;
    height: 400px;

    margin-top: 50px;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

footer .footer-section {
    display: flex;
    justify-content: space-between;
}

footer .footer-section .footer-links {
    justify-content: space-between;
    width: 50%;
}

footer .footer-section .footer-links #logo {
    width: 150px;
}

footer .footer-section .footer-nav {
    display: flex;
    height: 60%;

    margin-top: 10px;
}

footer .footer-section .footer-nav nav {
    display: flex;
    flex-direction: column;
}

footer .footer-section .footer-nav nav h4 {
    font-family: Montserrat;
    font-size: 20px;
    color: white;

    margin-bottom: 10px;
}

footer .footer-section .footer-nav nav a {
    font-family: Poppins;
    font-size: 14px;
    color: white;

    text-decoration: none;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
}

footer .footer-section .footer-links .nav-midia h4 {
    font-family: Montserrat;
    font-size: 20px;
    color: white;

    margin-bottom: 10px;
}

footer .footer-section .footer-nav nav a img {
    margin-right: 10px;

    width: 20px;
}

footer .footer-section .footer-links .nav-midia nav {
    display: flex;
    align-items: start;
    flex-direction: row;

    margin-top: 10px;
}

footer .footer-section .footer-text {
    display: flex;
    align-items: start;

    width: 55%;
    height: 50%;
}

footer .footer-section .footer-text img {
    width: 300px;
}

footer .footer-section .footer-text .contactUs h3 {
    font-family: Poppins;
    font-size: 30px;

    color: white;
}

footer .footer-section .footer-text .contactUs p {
    font-family: Poppins;
    font-size: 14px;

    padding-right: 15px;

    text-align: justify;

    color: white;
}

footer .copyright {
    font-family: PoppinsLight;
    font-size: 12px;

    color: white;

    width: 100%;
    text-align: center;

    border-top: 1px solid #FFFFFF50;

    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 0px 20px;
    }

    footer .footer-section .footer-text {
        display: none;
    }

    footer .footer-section .footer-links #logo {
        display: none;
    }

    footer .footer-section .footer-links .nav-midia {
        margin-left: 20px;
    }
}