@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}


/*--------------navbar inicio--------------*/
.navbar{
    position: fixed;
    width: 100%;
    padding: 10px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
    z-index: 1000;
}


.navbar.sticky{
    background: rgba(0, 0, 139, 0.8);
    padding: 7px 0;
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex; 
    align-items: center; 
}

.logo-container img {
    width: 40px; 
    height: 40px; 
    margin-right: 10px; 
}

.logo-container .logo {
    font-size: 35px; 
    font-weight: 500;
    color: white;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: #00BFFF;
}

.navbar.sticky li a:hover{
    color: #fff;
}

/*--------------Home Inicio--------------*/
.home {
    display: flex;
    background: url(images/banner.png) no-repeat center;
    background-size: cover;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.home-content {
    position: relative; 
    z-index: 1; 
}

.text-1,
.text-2,
.text-3 {
    color: #fff; 
}

.text-3 span {
    color: #00BFFF; 
}


.home .max-width{
    margin: auto 0 60px 0;
}

.home .home-content .text-1{
    font-size: 27px;
}

.home .home-content .text-2{
    font-size: 75px;
    font-weight: 500;
    margin-left: -3px;
}

.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span{
    color: #00BFFF ;
    font-weight: 500;
}

.home .home-content a{
    display: inline-block;
    background: #00BFFF;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #00BFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.home .home-content a:hover{
    color: #00BFFF;
    background: none;
}

/*--------------Menu Mobile--------------*/

.menu-btn{
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.menu-icon {
    font-size: 26px;
    transition: color 0.3s ease;
}

.scroll-up-btn{
    position: fixed;
    width: 41px;
    height: 45px;
    right: 30px;
    bottom: 30px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    background: #00BFFF;
    border-radius: 6px;
    font-size: 30px;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events:auto;
    
}

/*--------------Todos os codigos similares--------------*/

section{
    padding: 100px 0;
}

section .title{
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    position: relative;
}

section .title::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 20px;
    background: #fff;
    color: #111;
    padding: 5px;
    transform: translateX(-50%);
}

.about, .services, .clientes, .contact, footer {
    font-family: 'Roboto', sans-serif;
}

.about .about-content, .services .serv-content, .contact, .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/*--------------Sessão Sobre--------------*/

.about .title::after{
    content: "Quem Somos";
}

.about .about-content .left{
    width: 45%;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

.about .about-content .right .text span{
    color: #00008B;
}

.about .about-content .right p{
    text-align: justify;
}

.about .about-content .right a{
    display: inline-block;
    background: #00BFFF;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #00BFFF;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about .about-content .right a:hover{
    color: #00BFFF;
    background: none;
}

.about .about-content .left img{
    width: 480px;
    height: 650px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about .text h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about .text h4 ion-icon {
    margin-right: 10px;
    font-size: 1.2em;
}

/*--------------Sessão Serviços--------------*/

.services{
    background: url(images/FundoServiços.png) no-repeat center;
    background-size: cover;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Altere o valor alpha (0.5) para ajustar a opacidade */
    z-index: -1; /* Certifique-se de que esta camada esteja atrás do conteúdo */
    border-radius: 10px; /* Opcional: adicione bordas arredondadas */
}


.serv-content {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alinhe os cartões no topo da coluna */
    gap: 20px; /* Espaçamento entre os cartões */
    flex-wrap: wrap; /* Permite que os cartões quebrem para uma nova linha */
    margin-top: 40px;
}

.serv-content .card {
    background: #c7efeb;
    width: calc(33.33% - 40px); /* Definir a largura dos cartões */
    padding: 20px;
    text-align: center;
    color: #111;
    border-radius: 10px;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5), 15px 15px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.serv-content .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serv-content .card i {
    font-size: 2em;
    margin-bottom: 10px;
}

.serv-content .card .text {
    font-size: 1.5em;
    font-weight: 500;
    margin-top: 20px;
}

.services .card i {
    font-size: 3em; /* Ajuste o tamanho do ícone conforme necessário */
}

.serv-content .card {
    /* Existing styles */

    /* Add these lines for hover effects */
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.serv-content .card:hover {
    background-color: #00BFFF; /* Change to the color you want on hover */
}

/*--------------sessão clientes--------------*/

.clientes{
    background: #fff;
    color: #111;
}


.clientes .carousel .card{
    background: #fff;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.clientes .carousel .card:hover{
    background: #c7efeb;
}

.clientes .carousel .card img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20%;
    border: 4px solid #111;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5), 5px 5px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3 ease;
}

.clientes .carousel .card:hover img{
    border-color: #111;
}

.clientes .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3 ease;
}

.clientes .carousel .card:hover .box{
    transform: scale(1.05);
}

.clientes .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.owl-dots{
    text-align: center;
    margin-top: 20px;
}

.owl-dot{
    width: 14px;
    height: 14px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #111!important;
    transition: all 0.3s ease;
}

.owl-dot.active{
    width: 35px;
    border-radius: 15px;
}

.owl-dot.active, .owl-dot:hover{
    background: #111!important;
}

/*--------------sessão contato--------------*/

.contact .title::after{
    content: "Fale conosco";
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content{
    align-items: flex-start;
}


.contact .contact-content .left p{
    text-align: justify;
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact .contact-content .left .icons{
    margin: 10px 0;
}

.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info{
    margin-left: 30px
}

.contact .contact-content .row .info .head{
    font-weight: 500;
}

.contact .contact-content .row .info .sub-title{
    color: #333;
}

.contact .contact-content .row ion-icon{
    font-size: 25px;
    color: #111;
}

.contact .rigth form .fields{
    display: flex;
}
.contact .rigth form .field, .contact .rigth form .fields .field{
    width: 100%;
    height: 45px;
    margin-bottom: 15px;
}
.contact .rigth form .field input, .contact .rigth form .textarea textarea{
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Roboto',sans-serif;
}

.contact .rigth form .name{
    margin-right: 10px;
}

.contact .rigth form .email{
    margin-left: 10px;
}

.contact .rigth form .textarea{
    width: 100%;
    height: 80px;
}

.contact .rigth form .textarea textarea{
    padding-top: 10px;
    resize: none;
}

.contact .rigth form .button{
    width: 170px;
    height: 47px;
}

.contact .rigth form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #00BFFF;
    background: #00BFFF;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact .rigth form .button button:hover{
    color: #00BFFF;
    background: none;
}

/*--------------sessão footer--------------*/

footer{
    background: #111;
    padding: 20px 23px;
    color: #fff;
    text-align: center;
    margin-top: 50px; /* Adicione margem superior para separar o footer da sessão anterior */
}

footer span a{
    color: #00BFFF;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}

/*--------------responsivo--------------*/

@media (max-width: 1300px){
    .navbar .max-width{
        margin-left: 0;
    }
}

@media (max-width: 1104px){
    .about .about-content .left img{
        width: 350px;
        height: 350px;
        object-fit: cover;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 991px){
    .navbar .max-width{
        padding: 0 50px;
    }
}

@media (max-width: 947px){

   /* Redimensionar o fundo da sessão de serviços */
.services {
    background-position: center top;
}

/* Ajustar o espaçamento entre os serviços */
.serv-content {
    justify-content: center;
    margin-top: 20px;
    max-height: 500px; /* Adicione uma altura máxima desejada */
    overflow-y: auto; /* Adicione uma barra de rolagem vertical quando o conteúdo ultrapassar a altura máxima */
}

/* Definir a largura dos cartões de serviço para ocupar a largura total da tela */
.serv-content .card {
    width: 100%;
}

/* Ajustar o tamanho do ícone nos cartões de serviço */
.serv-content .card i {
    font-size: 2em;
}

/* Ajustar o tamanho do texto nos cartões de serviço */
.serv-content .card .text {
    font-size: 1em;
    margin-top: 10px;
}

/* Redimensionar a fonte nos títulos da sessão de serviços */
.services .title {
    font-size: 30px;
    margin-bottom: 30px;
}

    .about .about-content .left img {
        width: 100%; /* Ajuste a largura da imagem para preencher a tela */
        height: auto;
        max-width: 100%; /* Certifique-se de que a imagem não seja maior do que a tela */
    }
    
    .max-width{
        max-width: 800px;
        padding: 0 50px;
    }

    .menu-btn{
        display: block;
        z-index: 999;
    }
    
    .navbar .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        left: -100%;
        top: 0;
        background: #111;
        padding-top: 80px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .menu li{
        display: block;
    }

    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }

    .home .home-content .text-2{
        font-size: 70px;
    }
    
    .home .home-content .text-3{
        font-size: 35px;
    }

    .navbar .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }

    .about .about-content .column, .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }

    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right{
        flex: 100%;
    }

    .menu-icon {
        font-size: 23px;
    }

    .contact .rigth form .field,
    .contact .rigth form .fields .field {
        width: 100%; /* Certifique-se de que os campos de entrada ocupem toda a largura */
    }

}

@media (max-width: 767px) {
    .navbar .menu li {
        display: block; /* Altere a exibição dos itens do menu para empilhá-los verticalmente */
        margin: 10px 0;
    }

    .home .home-content .text-2 {
        font-size: 40px;
    }

    .home .home-content .text-3 {
        font-size: 22px;
    }

    .navbar .home-content a {
        font-size: 20px;
        padding: 10px 20px; /* Reduza um pouco o padding para economizar espaço */
    }
}

@media (max-width: 690px){

    .home .home-content .text-2{
        font-size: 40px;
    }
    
    .home .home-content .text-3{
        font-size: 22px;
    }

    .navbar .home-content a{
        font-size: 20px;
    }

    .menu-icon {
        font-size: 20px;
    }

}

@media (max-width: 500px) {
    .home .home-content .text-2 {
        font-size: 30px;
    }

    .home .home-content .text-3 {
        font-size: 18px;
    }
}
/* Estilos para a seção de clientes fixos */
.clientes-fixos {
    background: #fff;
    padding: 100px 0;
    color: #111;
}

.clientes-fixos .clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.clientes-fixos .card {
    background: #fff;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.clientes-fixos .card:hover {
    background: #c7efeb;
}

.clientes-fixos .card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #111;
}

.clientes-fixos .card .text {
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 15px;
}