@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Inter", sans-serif;
}
body,header{
    background-position: center;
    background-size: contain;
}

section,footer{
    padding: 20px 0;
}
h3{
    font-size: 35px;
}
p{
    color: white;
    padding: 5px;
    line-height: 1.6;
}
.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
     
}
.btn{
    background-color: #212121;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}
.btn.animate-btn{
    animation: animate-outline 1s ease-out infinite;
    
}
.btn:hover{
    background-color: #424242;
}
@keyframes animate-outline{
    from{
        outline: 0px solid #141414;
    }
    to{
        outline: 15px solid #35353520;
    }
}
header{
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;

}
nav ul{
    display: flex;
    align-items: center;
    
}
nav ul a{
    color: white;
    margin: 0 25px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
}
nav ul a:not(.btn):after{
    content: "";
    background-color: white;
    height: 3px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}
nav ul a:hover::after{
    width: 100%;

}
.banner{
    display: flex;
    justify-content:center;
}
.banner .banner-text{
    margin: 150px;
    text-align: center;
    padding: 0 90px;
}
.banner .banner-text h1{
    font-size: 80px;
    color: white;
}
.banner .banner-text p{
    font-size: 30px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: bold;
    margin: 18px 0;
}

.fundo-padrao .container{
    display: flex;
    align-items: center;
}

.fundo-padrao .fundo-padrao-text{
    width: 50%;
    padding: 0 30px;
    text-align: center;

}
.fundo-padrao-text .btn.animate-btn{
    align-content: center;
}
.fundo-padrao-text h3{
    color: white;
    font-size: 40px;
    text-align: justify;
}
.fundo-padrao-text p{
    margin: 5px 0 10px 0;
    color: white;
    font-weight: lighter;
    font-size: 20px;
    line-height: 1.6;
    text-align:justify;
    

}

.fundo-padrao .fundo-padrao-img{
    width: 50%;
}
.fundo-padrao .fundo-padrao-img img{
    border-radius: 50px;
    width: 100%;
    margin: 0 50px;
}

.mapa{
    text-align: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.mapa iframe{
    width: 500px;
    height: 400px;
    border-radius: 10px;
}
.mapa h3{
    padding: 20px;
    color: white;
}

.contato{
    text-align: center;
    background-position: center;
    background-size: cover;
}

.contato .btn{
    font-size: 50px;
    border-radius: 35%;
    margin: 17px;
}

.contato h3{
    color: white;
}

.contato .container{
    display: inline-block;
}

.rodape {
    background-color: #212121;
    text-align: center; 
    color: white;
    padding: 20px;
}

.rodape .localizacao{
    padding: 20px;
}

.contato-info{
    display: flex;
    flex-direction: row;
    justify-content:center;
    gap: 50px;
    color: white;
}

.servicos-hero{
    padding: 120px 0 80px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-text h1{
    font-size: 70px;
    color: white;
    margin-bottom: 20px;
}

.hero-text p{
    font-size: 22px;
    max-width: 900px;
    margin: auto;
}

.servico-detalhe{
    padding: 100px 0;
}

.servico-box{
    display: flex;
    align-items: center;
    gap: 50px;
}

.invertido .servico-box{
    flex-direction: row-reverse;
}

.servico-img{
    width: 50%;
}

.servico-img img{
    width: 100%;
    height: 500px;
    /*object-fit: cover;*/
    border-radius: 30px;
}

.servico-img video{
    width: 100%;
    height: 500px;
    object-fit: inherit;
    border-radius: 30px;
}

.servico-texto{
    width: 50%;
}

.servico-texto span{
    color: #ff9d00;
    font-weight: bold;
}

.servico-texto h2{
    color: white;
    font-size: 50px;
    margin: 15px 0;
}

.servico-texto p{
    font-size: 20px;
    line-height: 1.6;
}

.servico-texto ul{
    margin-top: 20px;
}

.servico-texto li{
    color: white;
    margin: 10px 0;
}


.galeria .container{
    padding: 100px 0;
    padding-bottom: 0px;
    display: grid;
}

.galeria h2{
    color: white;
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
}

.grid-galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 20px;
}

.grid-galeria img{
    width: 100%;
    height: 300px;
    /*object-fit: cover;*/
    border-radius: 20px;
    transition: 0.3s;
    background: #36363694;
}

.grid-galeria img:hover{
    transform: scale(1.03);
}


@media(max-width: 900px){

    .banner .banner-text {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 100px;
        margin-bottom: 100px;
        text-align: center;
    }

    .fundo-padrao .container{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
   
   .fundo-padrao .fundo-padrao-text {
        width: 95%;
        padding: 0 30px;
        text-align: center;
    }

    .fundo-padrao .fundo-padrao-img {
        width: 85%;
    }

    .fundo-padrao .fundo-padrao-img img {
        border-radius: 50px;
        width: 100%;
        margin-block: 20px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .servico-box{
        flex-direction: column;
    }

    .invertido .servico-box{
        flex-direction: column;
    }

    .servico-img,
    .servico-texto{
        width: 100%;
    }

    .hero-text h1{
        font-size: 50px;
    }
    
    .grid-galeria {
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 5%;
        margin-bottom: 5%;
    }

}   