*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html{
    height: 400vh;
    scroll-behavior: smooth;
}

body{
    background-color: rgb(75, 74, 74);
    width: 100%;
    height: 100vh;
    background-image: url(ImagensSolucoes/NovaVersao.png);
}


.interface{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 4%;
}


/*.banner{
    height: 90vh;
    background-image: url(ImagensSoluções/Banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}*/

/* Estilo do header*/
header{
    width: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: .5s;
    z-index: 999999999999999;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    max-width: 100px;
    margin-left: 30px;
}

/* Estilo do menu dinamico */

header .logo img.logo-preto{
    display: none;
}

 header.rolar{ 
    background-color: #000;
    padding: 20px 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.616);
}

header.rolar .menu-desktop nav ul li a{
    color: #fff;
}

header.rolar .menu-desktop nav ul li a:hover{
    transform: scale(1.07);
    color: #999;
}

header.rolar .logo .logo-fundo{
    display: none;
}

header.rolar .logo .logo-preto{
    display: block;
}

/* ---------------------- */

header .menu-desktop nav ul{
    list-style-type: none;
}

.menu-desktop nav ul li{
    display: inline-block;
    margin: 0 40px;
}

.menu-desktop nav ul li a{
    color: #ffff;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.menu-desktop nav a:hover{
    transform: scale(1.09);
    color: #000;
}

/* estilo botão menu mobile */
header .btn-menu-mob{
    display: none;
    position: relative;
    z-index: 99999999999999999999999999;
}

header .btn-menu-mob div{
    background-color: #fff;
    height: 3px;
    margin: 10px 0;
    transition: .2s;
}

header .btn-menu-mob .line-menumob-1{
    width: 30px;
}

header .btn-menu-mob .line-menumob-2{
    width: 20px;
}

header.rolar .btn-menu-mob div{
    background-color: #fff;
}

header .btn-menu-mob .line-menumob-1.ativo1{
    transform: rotate(45deg) translate(30%);
    background-color: #fff;
}

header .btn-menu-mob .line-menumob-2.ativo2{
    transform: rotate(-45deg) translate(30%);
    width: 30px;
    background-color: #fff;
}

/* estilo menu mobile */
header .menu-mobile{
    width: 50vw;
    height: 0;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    overflow: hidden;
    transition: .5s;
}

header .menu-mobile nav{
    width: 100%;
}

header .menu-mobile nav ul{
    list-style-type: none;
}

header .menu-mobile nav a{
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    padding: 20px 0;
    display: block;
    transition: .5s;
}

header .menu-mobile nav a:hover{
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
}

header .menu-mobile.abrir{
    width: 80%;
    height: 100vh;
}

body.no-overflow{
    overflow: hidden;
}

/*  estilo hero */
section.hero-site{
    height: 98vh;
    background-image: url(ImagensSolucoes/Banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffff;
}

.hero-site .texto {
    left: 0;
    top: 0;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffff;
}

.hero-site .texto h1{
    font-size: 4em;
    line-height: 60px;
}

.hero-site .texto h2{
    font-size: 20px;
}

.hero-site .texto h3{
    font-size: 15px;
    margin: 10px 0;
}

.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}

.form-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

form{
    background-color: #ffff;
    max-width: 500px;
    height: 580px;
    padding: 40px;
    border-radius: 20px;
}

form h1{
    text-align: center;
    font-size: 25px;
    color: #999;
}

form p{
    text-align: center;
    margin: 20px 0px; 
}

.imput-single{
    position: relative;
    margin: 30px 0;
}

.imput-single label{
    position: absolute;
    left: 0;
    bottom: 5px;
    transition: all 0.2s;
    cursor: text;
}

.input{
    width: 100%;
    border: 0;
    border-bottom: 2px solid #ccc;
    padding: 5px;
    font-size: 17px;
    outline: none;
}

form .imput-single .input:focus ~ label,
form .imput-single .input:valid ~ label{
    transform: translateY(-24px);
    font-size: 12px;
    color: #999;
}

.btn{
    width: 100%;
    text-align: center;
}

form input[type=submit]{
    padding: 10px 40px;
    border: 0;
    border-radius: 10px;
    background-color: #21365E;
    color: #ffff;
    cursor: pointer;
}

form input[type=submit]:hover{
    transform: scale(1.07);
    background-color: #000;
    color: rgb(255, 255, 255);
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: #3A5C9C;
    border-radius: 60px;
}

/* forms e texto*/
section.servicos{
    padding: 80px 0 50px 0;
    background-color: #000;
}

.form-container, .instrucoes{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
    height: 90vh;
    margin-top: 40px;
}

.instrucoes .interface{
    width: 50%;
    justify-content: space-around;
}

.instrucoes .instru-box{
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 40px;
    padding: 20px;
    border: 3px solid #fff;
    border-radius: 20px;
    background-color: #000;
}

.instrucoes .instru-box img{
    max-width: 70px;
}

.instrucoes .instru-box h4{
    font-size: 1.5em;
    color: #ffff;
}

/* estilo das imagens*/
section.foto-txt{
    padding: 80px 0;
}

.foto-txt .itens-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 40px;
}

.foto-txt .itens-container .img-itens img{
    max-width: 300px;
    margin-left: 30px;
}

.foto-txt .itens-container .img-itens-item-1 img{
    max-width: 350px;
    margin-left: 30px;
}

.foto-txt .itens-container .txt-itens h5{
    font-size: 3em;
    line-height: 50px;
    margin-bottom: 20px;
    margin-right: 30px;
    color: #ffff;
}

.foto-txt .itens-container .txt-itens p{
    font-size: 25px;
}

.foto-txt .itens-container .img-itens-item-10 img{
    max-width: 350px;
    margin-left: 30px;
}

.itens-container .txt-Serviços h5{
    
    left: 0;
    top: 0;
    margin-top: 40px;
    margin-bottom: 85px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffff;
    font-size: 2.5em;
}

.itens-container .txt-Serviços p{
    left: 0;
    top: 50px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 25px;
}

/* Carrossel */


.container-slider{
    background-image: url(ImagensSolucoes/NovaVersao.png);
    display: flex;
    width: 100%;
    min-height: 70vh;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container-imagens{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 550px;
}

.slider{
    opacity: 0;
    transition: opacity .2s;
    transition: 1s;
    position: absolute;
    width: 100%;
    border-radius: 10px;
}

.on{
    opacity: 1;
}

#prev-button, #next-button{
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

#prev-button img, #next-button img{
    width: 100%;
    height: 100%;
}

#prev-button{
    transform: rotate(180deg);
}

.itens-container .txt-carrossel{
    background-image: url(ImagensSolucoes/NovaVersao.png);
    padding-top: 20px;
    padding-bottom: 50px;
}

.itens-container .txt-carrossel h5{
    
    left: 0;
    top: 0;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #21365E;
    font-size: 4em;
}

.itens-container .txt-carrossel p{
    left: 0;
    top: 10px;
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #21365E;
    font-size: 30px;
}


/* Estilo dos botões de contato */
section.contato{
    background-image: url(ImagensSolucoes/NovaVersao.png);
    padding: 80px 0;
}

.txt-contato, .icons-contato{
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.contato .txt-contato h2{
    font-size: 3em;
    color: #fff;
}

.contato .txt-contato p{
    font-size: 27px;
    color: #fff;
}

.contato .icons-contato a{
    text-decoration: none;
}

.contato .icons-contato button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 60px;
    margin: 0 auto 20px auto;
    padding: 0 60px;
    background-color: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    transition: .5s;
    border-radius: 20px;
}

.contato .icons-contato button i{
    font-size: 27px;
    color: #fff;
}

.contato .icons-contato button:hover{
    background-color: #000;
    border: #000;
}

.contato .icons-contato button:hover i, .contato .icons-contato button:hover span{
    color: #fff;
}

.contato .icons-contato button span{
    font-size: 17px;
    color: #fff;
}



/* Estilo do rodapé*/
footer{
    background-color: #000;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

footer .top-footer button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ffff;
    background-color: transparent;
    color: #ffff;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: .5s;
}

footer .top-footer button:hover{
    background-color: #ffff;
    color: #000;
}

footer .middle-footer{
    margin: 20px 0;
}

footer .middle-footer img{
    align-items: center;
    max-width: 170px;
}

footer .bottom-footer{
    border-top: 2px solid #ffff;
}

footer .bottom-footer p{
    color: #ffff;
    margin-top: 10px;
}