*{
   margin: 0;
   padding: 0;
   box-sizing: border-box; 
   font-family: "Open Sans", sans-serif;
   scroll-behavior: smooth;

}

header, .top_header, main, .services, .footer{
    display: block;
    left: 0;
    right: 0;
    z-index: 5;
}

.top_header{
    /* background-color: #ee0a09; */
    background-color: #c7aa20;
    padding: 10px 0;
    color: white;
}

.top_header_content{
    justify-content: flex-start;
    padding: 1px 3% 1px 3%;
}

.top_header_content p{
    font-weight: 600;
    font-size: 18px;
    margin: 0 4px;
    font-family: "Open Sans", sans-serif;
}

.top_header_content p i{
    padding-right: 5px;
}

.top_header_content p a{
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

.header_content, .top_header_content, .services_content{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    align-items: center;
}

.header_content{
    justify-content: space-between;
    padding: 3px 3% 3px 3%;
    position: relative;
}

.link_services_menu{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    z-index: 10;
    width: 100%;
    top: 160px;
    transition: all 1s;
    display: none;
}

.link_services_menu li{
    margin: 0 20px;
    list-style: none;
    padding: 7px;
}

.link_services_menu li a{
    font-weight: 600;
    text-decoration: none;
    color: #053a5c;
    font-size: 18px;
}

.header_content .logo{
    max-width: 80px;
    margin: 10px 0;
}

.header_content ul{
    display: flex;
}

.header_content ul li{
    margin: 0 20px;
    list-style: none;
    padding: 7px;
}

.header_content ul li:nth-child(4){
    border: 2px solid #c7aa20;
        color: #c7aa20;
}
.header_content ul li .last{
    /* color: #ee0a09; */
        color: #c7aa20;
}
.header_content ul li a{
    font-weight: 600;
    text-decoration: none;
    color: #053a5c;
    font-size: 18px;
}

.header_content ul li .underline{
    /* border-bottom: 2.4px solid #ee0a09;
    color: #ee0a09; */
        color: #c7aa20;
}

.open_menu{
    display: none;
    padding: 12px;
    border: 1px solid #80808087;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.open_menu:hover{
    background-color: #bdbdbd39;
}

.open_menu i{
    color: #0c3152;
    font-size: 20px;

}

@media(max-width: 740px) {
    .header_content ul{
        display: none;
    }

    .open_menu{
        display: flex;
    }

    .header_content .logo{
        max-width: 120px;
    }
}

.menu_mobile{
    z-index: 1000;
 
    width: 100%;
    transition: all 1s;
    position: absolute;
    top: 210px;
    left: -100%;
    overflow-y: auto;
}

.menu_mobile .links_mobile{
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.menu_mobile .links_mobile a{
    border-bottom: 0.4px solid #f2f1f1bb;
    height: 50px;
    list-style: none;
    margin:0;
    color: #ffffff;
    background-color: #053a5c;
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}

.link_services{
    background-color: white;
    display: none;
    transition: all 1s;
    flex-direction: column;
}
.link_services a{
  background-color: #ffffff !important;
  color: #053a5c !important;
}

.menu_mobile .links_mobile a:hover{
    transition: 1s;
    /* background-color: #ee0a09; */
        background-color: #c7aa20;
}

.menu_mobile .links_mobile a li, .link_services a li{
    padding-left: 5PX;
    padding: 10PX;
    font-size: 19px;
}

main{
    position: relative; /* Necessário para posicionar o overlay corretamente */
    background-image:url(../img/welcome_2.JPG) ;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover; /* Cobrir toda a área */
    background-position: center; /* Centralizar a imagem */
    background-repeat: no-repeat; /* Evitar repetição */
    margin: 0; /* Remover margens padrão */

}

.main_content{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 9% 3% 9% 3%;
    position: relative; /* Importante para ficar acima do overlay */
    z-index: 2; /* Valor maior que o overlay */
    color: white;
    
}

.main_content p{
    font-size: 22px;
    font-weight: 500;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c315293; /* Preto com 50% de transparência */
    z-index: 1; /* Fica acima da imagem de fundo */
}

.main_content h1{
    font-weight: 700;
    font-size: 40px;
    font-family: "Open Sans", sans-serif;
}

.main_content h5{
    font-weight: 40;
    font-size: 22px;
    font-family: "Open Sans", sans-serif;
}   

@media(max-width: 840px) {
    .main_content h1{
        font-size: 28px;
        text-align: center;
    }

    .main_content h5{
        font-size: 18px;
        text-align: center;
    } 

    .main_content{
        padding: 18% 3% 18% 3%;
        justify-content: center;
        align-items: center;
    }
}

.main_content button{
    width: 130px;
    margin-top: 10px;
    padding: 10px 0;
    border-radius: 10px ;
    border: none;
    /* background-color: #ee0a09; */
    background-color:#c7aa20;
}

.main_content button a{
    text-decoration: none;
    color: white;
}

.services_content{
    flex-direction:column;
}

.services_content .title{
    text-align: center;
    padding: 25px 0 ;
    width: 100%;
}

.services_content .title h5{
    font-weight: 200;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    color: #124979;
}

.services_content .title h2{
    font-weight: 700;
    font-size: 35px;
    font-family: "Open Sans", sans-serif;
    /* color: #ee0a09; */
        color: #c7aa20;
}

.services_box{
    margin-top: 10px;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
}

.pack{
    max-width: 250px;
    margin: 15px;
}

.pack h4{
    font-weight: 700;
    margin: 6px 0 6px 0;
    font-size: 18px;
    color:#1863a4;
    font-family: "Open Sans", sans-serif;
}

.pack img{
    width: 100%;
}


.pack p{
    margin-bottom: 10px;    
    font-weight: 200;
    font-size: 18px;
}

.pack a{
    text-decoration: none;
    color:#207cce;
}

.about{
    position: relative; /* Necessário para posicionar o overlay corretamente */
    background-image:url(../img/welcome.JPG) ;
    background-repeat: no-repeat;
    background-attachment: local;
    background-size: cover; /* Cobrir toda a área */
    background-position: center; /* Centralizar a imagem */
    background-repeat: no-repeat; /* Evitar repetição */
    margin-top: 50px;
}

.about .overlay{
    background: linear-gradient(90deg,#0f3f69a0 0%, #1c86e38d 50%); /* Preto com 50% de transparência */
}

.about-content{
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5% 3% 5% 3%;
    color: white;
}
.about h2, .about p, .about button{
    z-index: 20;
}

.about h2{
    font-weight: 700;
    font-size: 45px;
    text-align: center;
}

.about p{
    font-style: 300;
    font-size: 17px;
    margin: 14px 0 ;
    text-align: center;
}

@media(max-width: 840px) {
    .about h2{
        font-size: 32px;
    }

    .about p{
        font-size: 15px;
    } 

    .main_content{
        padding: 18% 3% 18% 3%;
        justify-content: center;
        align-items: center;
    }
}

.about a{
    padding: 10px 14px;
    text-decoration: none;
    border: 2.8px solid white;
    color: white;
    background-color: transparent;
}

footer{
    background-color:#053a5c;
}

.footer_content{
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    padding: 10px 3% 10px 3%;
    flex-wrap: wrap;
    color: white;
}


.footer_content .logo{
    max-width: 130px;
    margin: 20px;

}

.footer_content .pack_footer{
    margin: 20px;
}

.footer_content .pack_footer h3{
    margin-bottom: 10px;
    font-size: 19px;
    color: white;
}

.footer_content .pack_footer UL LI{
    list-style: none;
    margin: 4px 0;
}

.footer_content .pack_footer ul li a{
    color: white;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.2;
    font-size: 18px;
}

.down_footer{
    color: white;
    text-align: center;
    font-weight: 200;
    font-size: 18px;
    background-color: #053a5c;
    padding: 10px 5px;
}

.services li{
    margin: 3px 0;
}