@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo';
    scroll-behavior: smooth;
  
}


body {
    background-color: #280069;
    color: #F9F9F9;
    font-size: 1.1rem;
    overflow-x: hidden;
}

h3 {
    font-size: 3 rem;
    font-weight: bold;
}

.scroll {
    scroll-margin-top: 10vh;
}

/* Menu */

.menu {
    display:flex;
    position: absolute;
    width: 100vw;
    justify-content: space-between;
}


.hamburguer {
    font-size: 0;
    display: none;
}

#toggle-menu {
    display: none;
  }


.linhamenu {
    display: none;
}

.logomenu {
    height: 50px;
    margin-left: 40px;
    margin-top: 30px;
    padding: 5px;
    margin-top: 20px;
}

header {
    display:flex;
    align-items:center;
    justify-content: space-between;
    background-color:#280069;
    height: 10vh;
    position: fixed;
    width: 100vw;
    z-index: 100;
    padding: 10px;
    padding-right: 40px;
    box-shadow: 0 2px 10px rgb(0, 0, 0, 5);
}


.menulist a{
    color: white;
    text-decoration: none;
    list-style: none;
    margin-left: 3vw;
    font-size: 1.2rem;
    white-space: nowrap;
}

.menulist{
    display: flex;
    padding: 2vw;
    width: fit-content;
    margin-right: 2vw;
    list-style-type: none;
}

.menulist2{
    display: flex;
    padding: 2vw;
    width: fit-content;
    margin-right: 2vw;
    list-style-type: none;
    display: none;
}



/*Home*/
.home {
    background-image: url(Images/heroimage.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: fit-content;
    width: 100%;
    min-height: 98vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
}

.textohome {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 3em;
}


.textohome2 {
    display: flex;
    justify-content: center;
}

.textohome3 {
    padding: 20px;
    font-size: 1.5rem;
    width: 40vw;
    line-height: 1.8rem;
}


.textodestaque1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
}

.textodestaque2 {
    color: #35A8E0;
}


#botaohome {
    margin-top: 20px;
    padding: 16px 0 16px 0;
    font-size: 1.5rem;
    font-weight: bold;
    width: 35vw;
    height: fit-content;
    color: #F9F9F9;
    background-color: #1E0DBF;
    border-radius: 5px;
    border-style:none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgb(0, 0, 0, 5);
}

#botaohome:hover {
    background-color: #ffffff;
    color:#280069;
}


.whatsflutuante {
    width: 60px;
}


.logowhats {
    position: fixed;
    display: flex;
    padding: 0;
    width: 20vw;
    justify-content: end;

}

/*Serviços*/

.servicos {
    padding: 50px;
    width: 100vw;
    height:fit-content;
    min-height: 90vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.servicocontainer {
    width:fit-content;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: baseline;
    justify-content: center;
    padding: 0;
    margin: 0;

}

.servico1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20vw;
    margin-bottom: 10vh;
}

.tituloazul {
    display: flex;
    justify-content: center;
    font-size: 2.5rem;
    color: #280069;
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;

}

.servicos img {
    height: 10vh;
    width: 10vh;
    margin-bottom: 10px;
    padding: 0;
}

.servicos h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #616161;
    font-weight: 700;
    text-align: center;
    line-height: 1.2em;
}

/*Quem somoms*/

.quemsomos {
    width: 100vw;
    background-color:#280069;
    height: fit-content;
    padding-bottom: 100px;
}

.tituloquemsomos {
    text-align: center;
    padding: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color:#ffffff;
}

.quemsomoscontainer {
    display: flex;
    justify-content: center;
}

.textocontainer {
    font-weight: 500;
    color: #280069;
    box-shadow: 0px 4px 10px rgb(0, 0, 0, 0.5);
    background-color: #fff;
    padding: 30px;
    width: 33vw;
    height: fit-content;
    font-size: 1.2rem;
    border-radius: 20px;
    margin-right: 50px;
}

.imagemquemsomos {
   margin-left: 50px;
   width: 33vw;
}

.imgquemsomos{
    width: inherit;
}
/*Contato*/

.contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color:#fff;
}

.formulario {
    display: block;
    width: 50vw;
    height:fit-content;
}

#nome {
    font-size: 1.1rem;
    height: 5vh;
    width: inherit;
    margin-bottom: 8px;
    border-color: #828282;
    border-radius: 5px;
    border-style:solid;
    padding-left: 5px;
    transition: border-color 0.2s ease-in-out;
}

#nome:focus {
    border-color:#1E0DBF;
    outline: none; /* Remove a borda de foco padrão do navegador */
}

#email {
    font-size: 1.1rem;
    height: 5vh;
    width: inherit;
    margin-bottom: 8px;
    border-color: #828282;
    border-radius: 5px;
    border-style:solid;
    padding-left: 5px;
    transition: border-color 0.2s ease-in-out;
}

#email:focus {
    border-color:#1E0DBF;
    outline: none; /* Remove a borda de foco padrão do navegador */
}


#telefone {
    font-size: 1.1rem;
    height: 5vh;
    width: inherit;
    margin-bottom: 8px;
    border-color: #828282;
    border-radius: 5px;
    border-style:solid;
    padding-left: 5px;
    transition: border-color 0.2s ease-in-out;
}


#telefone:focus {
    border-color:#280069;
    outline: none; /* Remove a borda de foco padrão do navegador */
}

#mensagem {
    font-size: 1.1rem;
    height: 20vh;
    width: inherit;
    margin-bottom: 8px;
    border-style: solid;
    border-color: #828282;
    border-radius: 5px;
    border-width: 2px;
    word-wrap: break-word;
    padding-left: 5px;
    padding-top: 5px;
    transition: border-color 0.2s ease-in-out;
}

#mensagem:focus {
    border-color:#1E0DBF;
    outline: none; /* Remove a borda de foco padrão do navegador */
}


#botao {
    padding: 16px;
    font-size: 1.1rem;
    height: fit-content;
    width: inherit;
    color: #F9F9F9;
    background-color:#1E0DBF;
    border-radius: 5px;
    border-style:none;
    cursor: pointer;
}

#botao:hover {
    background-color:#280069;
}

#linkredes{
    display: flex;
    justify-items: center;
    align-items: center;
    height: 35px;
    margin-top: 8px;
}

#linkredes a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E1E1E;
}

/*Footer*/

.footer h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.socialicon {
    height: 40px;
    width: 40px;
    margin: 10px;
}

.footer {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr 1fr ;
    padding: 50px;
}

.logofooter {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.logofooter a {
    margin: 0;
    padding: 0;
}

.socialcontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.socialiconcontainer {
    display: flex;
    justify-content:center;
}

.contatocontainer {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menulist3 {
    display: flex;
    flex-direction: column;
    align-items:center;
    padding: 20px;

}

.mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menulist2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.menulist2 a{
    color: white;
    text-decoration: none;
    list-style: none;
    margin-left: 3vw;
    font-size: 1.2rem;
    white-space: nowrap;
}


/*Estilo para tablet */

.logowhats {
    position: fixed;
    margin-top:  70vh;
    margin-right: 7vw;
    margin-left: 70vw;
}


@media (max-width: 1300px) {

    .textohome3 {
        width: 60vw;
    }
}

@media (max-width: 1000px) {
    .scroll {
        scroll-margin-top: 10vh;
    }

    .logomenu {
        margin: 0;
        padding: 2px;
        height: 7vh;
    }

    header {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .menu {
        display: flex;
        width: 100vw;
        justify-content: space-around;
        align-items: center;
        height: inherit;
    }

    .menucontainer {
        display: flex;
        flex-direction: column;
        max-height: inherit;
    }

    .menulist {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        background-color: #F9F9F9;
        width: 100%;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        position:absolute;
        left: 0;
        top: 15vh;
        overflow: hidden;
        display: none;
        box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
    }

    .menulist li {
        padding: 8px;
        margin: 0;
        
    }
    
    .menulist a {
        font-weight: bold;
        color:#1E1E1E;
        height: 0;
        padding: 0;
        margin: 0;
        
    }

    .linhamenu{
        color:#1E1E1E;
        display: block;
        justify-content: center;
        width: 100px;
    }

    
    .hamburguer {
        display: flex;
        height: fit-content;
    }

    .hamburguer_icon {
        display: block;
        background-image: url(Images/hamb_closed.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 7vh 7vh; /* ajuste aqui para o tamanho da imagem */
        height: 7vh;
        width: 7vh; /* defina a largura */
    }

    #toggle-menu {
        display: none;
    }
    
    #toggle-menu:checked ~ .menulist {
        display: flex;
    }

    #toggle-menu:checked + .hamburguer .hamburguer_icon {
        background-image: url("Images/hamb_open.svg");
    }

   

    .textodestaque1 {
        font-size: 3rem;
        line-height: 0.3em;
    }


    .textohome3 {
        padding: 20px;
        font-size: 1.5rem;
        width: 80vw;
        line-height: 1.8rem;
    }

    .quemsomoscontainer {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }
    
    .textocontainer {
        margin: 0;
        width: 90vw;
    }

    .imagemquemsomos {
        width: 90vw;
        margin: 0;
    }

    .servicocontainer {
        width:90vw;
        padding: 30px;
        align-items: baseline;
    }

    .servico1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin-bottom: 10vh;
    }
    


}



/*Estilo para mobile */

@media (max-width: 750px) {

    .logowhats {
        position: fixed;
        margin-top:  70vh;
        margin-right: 7vw;
        margin-left: 70vw;
    }

    .scroll {
        scroll-margin-top: 15vh;
    }

    .logomenu {
        margin: 0;
        padding: 2px;
        height: 7vh;
    }

    header {
        flex-direction: column;
        padding: 0;
    }

    .menu {
        display: flex;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        height: inherit;
    }

    .menucontainer {
        display: flex;
        flex-direction: column;
        max-height: inherit;
    }

    .menulist {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        background-color: #F9F9F9;
        width: 100%;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        position:absolute;
        left: 0;
        top: 15vh;
        overflow: hidden;
        display: none;
        box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.3);
    }

    .menulist li {
        padding: 8px;
        margin: 0;
        
    }
    
    .menulist a {
        font-weight: bold;
        color:#1E1E1E;
        height: 0;
        padding: 0;
        margin: 0;
        
    }

    .linhamenu{
        color:#1E1E1E;
        display: block;
        justify-content: center;
        width: 100px;
    }

    
    .hamburguer {
        display: flex;
        height: fit-content;
    }

    .hamburguer_icon {
        display: block;
        background-image: url(Images/hamb_closed.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 7vh 7vh; /* ajuste aqui para o tamanho da imagem */
        height: 7vh;
        width: 7vh; /* defina a largura */
    }

    #toggle-menu {
        display: none;
    }
    
    #toggle-menu:checked ~ .menulist {
        display: flex;
    }

    #toggle-menu:checked + .hamburguer .hamburguer_icon {
        background-image: url("Images/hamb_open.svg");
    }

    .textodestaque1 {
        font-size: 3rem;
        line-height: 0.3em;
    }

    .home{
        width: 100%;
    }

    .servicos {
        width: 100%;
    }

    .quemsomos {
        width: 100%;
    }

    .contato{ 
        width: 100%;
    }

    .footer {
        width: 100%;
    }

    .quemsomoscontainer {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        padding: 0;
    }
    
    .textocontainer {
        margin: 0;
        width: 90vw;
    }

    .imagemquemsomos {
        width: 100vw;
        margin: 0;
    }

    .imgquemsomos{
        margin: 0;
        padding: 0;
        width: inherit;
    }

    /*Servicos*/

    .servicocontainer {
        width:fit-content;
        display: flex;

    
    }


    .tituloazul {
        line-height: 3rem;
    }

    .tituloquemsomos {
        line-height: 3rem;
    }

    .divservico1{
        width: 100vw;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .imagemquemsomos {
        width: 60vw;
        margin:0;
    }

    .imgquemsomos {
        margin-left: 50px;
        width: inherit;
     }

     .footer {
        display: block;
     }
     
}