/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Black.ttf') format('truetype');*/
/*    font-weight: 900;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-BlackItalic.ttf') format('truetype');*/
/*    font-weight: 900;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-ExtraBold.ttf') format('truetype');*/
/*    font-weight: 800;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-BlackItalic.ttf') format('truetype');*/
/*    font-weight: 800;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Bold.ttf') format('truetype');*/
/*    font-weight: 700;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-BoldItalic.ttf') format('truetype');*/
/*    font-weight: 700;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Medium.ttf') format('truetype');*/
/*    font-weight: 500;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-MediumItalic.ttf') format('truetype');*/
/*    font-weight: 500;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Regular.ttf') format('truetype');*/
/*    font-weight: 400;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Italic.ttf') format('truetype');*/
/*    font-weight: 400;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-Light.ttf') format('truetype');*/
/*    font-weight: 300;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-LightItalic.ttf') format('truetype');*/
/*    font-weight: 300;*/
/*    font-style: italic;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-ExtraLight.ttf') format('truetype');*/
/*    font-weight: 200;*/
/*    font-style: normal;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Poppins';*/
/*    src: url('/fonts/Poppins-ExtraLightItalic.ttf') format('truetype');*/
/*    font-weight: 200;*/
/*    font-style: italic;*/
/*}*/

:root {
    --cor-azul-escuro: #072e5a;
    --cor-ciano: #00adcd;
    --cor-branco: #ffffff;
    --cor-preto: #000000;
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* outline: 1px solid red; /* Apenas para debugging */
}
body{
    height: 100vh;
    color: #072e5a;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cor-ciano);
}

.nav_cont {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: center;
}

.nav_left {
    display: flex;
    margin-bottom: 24px;
}

.logo img {
    height: 150px;
}

.division_line {
    display: flex;
    width: 75%;
    background-color: #00adcd;
    margin: auto;
    margin-bottom: 24px;
    height: 3px;
}

.nav-links {
    display: flex;
    text-align: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    font-weight: 400;
    font-size: 30px;
    color: var(--cor-azul-escuro);
    transition: opacity 0.3s;
}

.nav-links li a:hover {
    opacity: 0.7;
}

.nav-links li {
    list-style-type: none;
    margin: 0 !important;
}

.nav-links li a.active {
    color: var(--cor-azul-escuro);
    font-weight: 700;
    position: relative;
}


.hero {
    text-align: center;
    padding: 4rem 2rem;
}
.hero h1 {
    font-size: 2.5rem;
    color: #0b2b57;
}
.hero p {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contato {
    text-align: center;
    color: #072e5a;
    width: 75%;
    margin: 0 auto;
    padding: 0;
}

.contato-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.contato-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 20px;
    width: 100%;
    color: var(--cor-azul-escuro);
}

.col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.col p {
    margin: 1px 0;
    display: flex;
    align-items: center;
}

.col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.email-group {
    position: relative;
}

.secondary-email {
    padding-left: 30px;
}

.col p i.fa-envelope {
    margin-right: 10px;
    width: 20px;
}

.contato-endereco {
    text-align: left;

}

.contato-endereco p {
    display: flex;
    justify-content: center;
    margin: 5px 0;
}

.contato-endereco i {
    margin-right: 10px;
    padding-top: 5px;
}




a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}



.footer-logo {
    margin-top: -20px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
}
.footer-logo img {
    width: 300px;
}

.collapsible_line{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: center;
    border-bottom: 2px var(--cor-ciano) solid;
    margin: 0;
    width: 100%;
    height: 2px;
}

.footer-logo {
    font-size: 2rem;
    color: #00bcd4;
    font-weight: bold;
    text-align: center;
    padding-bottom: 2rem;
}

.footer-logo span {
    color: #0b2b57;
    font-weight: 400;
}

@media (max-width: 768px) {
    .contato{
        width: 75%;
        padding: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .contato-grid {
        flex-direction: column;
        align-items: center;
    }

    .col {
        align-items: center;
    }

    .col .email-group,
    .contato-endereco {
        align-items: center;
        text-align: center;
    }

    .footer-logo img{
        width: 200px;
    }
}
    @media(min-width: 1024px){
        .nav-links {
            gap: 40px;
        }
    }

