/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Quicksand:wght@300;400;500;700&family=Saira+Stencil+One&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 

/*Styles that makes diference in all the page*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100%;
}

section{
    height: 100vh;
    width: 100%;
}

/*Header Style*/

header{
    position: fixed;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

header img{
    max-height: 90%;
}

header .links{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .links a{
    margin-right: 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: #E6782F;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Source Sans 3', sans-serif;
}

header .links .link.active{
    padding: 6px;
    background: #E6782F;
    color: #ffffff;
    border-radius: 10px;
}

header .btn_menu{
    height: 20px;
    border: none;
    background: none;
    border-top: 3px solid #E6782F;
    cursor: pointer; 
    margin: 30px;
    display: none;
    z-index: 1;
}

header .btn_menu::before,
header .btn_menu::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: #E6782F;
    margin-top: 5px;
    position: relative;
    transition: 0.2s;
}

@media screen and (max-width: 700px) {
    header .btn_menu{
        display: block;
    }

    header .links{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        height: 100vh;
        width: 100vw;
        background: rgba(255, 255, 255, 0.85);
        font-size: 1.5rem;
        gap: 0;
        clip-path: circle(100px at 90% -15%);
        transition: 1s ease-out;
        pointer-events: none;
    }

    header.active .links{
        clip-path: circle(1500px at 90% -15%);
        pointer-events: all;
    }

    header.active .btn_menu{
        border-top-color: transparent;
    }

    header.active .btn_menu::before{
        transform: rotate(135deg);
    }

    header.active .btn_menu::after{
        transform: rotate(-135deg);
        top: -7px;
    }
}


.parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
}
.parallax-bg-blur {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
}

.parallax-bg img{
    min-width: 100%;

}

.parallax-bg .bg-3 img{
    min-width: 100%;
}


/*Style about the content in home*/

.content-home{
    position: relative;
    top: 50%;
    width: 50%;
    height: 35%;
    float: right;
    padding: 10px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.content-home h1{
    color: #ffffff;
    text-transform: uppercase;
    font-size: 4rem;
    text-shadow: 6px 6px 0 #E6782F;
}

.content-home .texts-animation{
    display: flex;
    justify-content: flex-start;
}

.content-home .texts-animation span{
    display: inline-block;
    opacity: 0;
    position: absolute;
}

.content-home .texts-animation span.typed{
    opacity: 1;
    color: #E6782F;
    text-transform: uppercase;
    font-size: 4rem;
    text-shadow: 6px 6px 0 #000000;
}

/*Style about the content in the section about us*/

.about-us{
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
}

.about-us .left,
.about-us .right{
    height: 100%;
    width: 50%;
    background: #ffffff;
    padding: 35px;
}

.about-us .left h1,
.about-us .right h1{
    font-family: 'Saira Stencil One', cursive;
    color: #E6782F;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.about-us .left p,
.about-us .right p{
    font-family: 'Quicksand', sans-serif;
    text-align: justify;
    line-height: 1.6;
    margin: 20px;
    font-weight: 500;
}

.about-us .left img{
    height: 150px;
}

.about-us .right .box .title{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.about-us .right .title img{
    height: 60px;
    margin-right: 8px;
}

/*Services Stile*/

.services{
    width: 100%;
    height: max-content;
}

.services h1{
    text-align: center;
    font-size: 4rem;
    font-family: 'Anton', sans-serif;
    letter-spacing:  1px;
    color: #E6782F;
    text-shadow: 3px 3px 0 #000000;
    padding: 20px;
}

.containers{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.container {
    background: #E6782F;
    position: relative;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px;
    padding: 10px;
    transition: 0.5s ease-in-out;
}

.container .card {
    max-width: 400px;
    height: 300px;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.4);
    transition: 0.5s ease-in-out;
}

.container .card:hover{
    height: 350px;
}

.container .card .img-box{
    position: relative;
    width: 100%;
    height: 60%;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    transition: 0.5s ease-in-out;

}

.container .card .img-box img{
   width: 100%;
}

.container .card:hover .img-box{
    height: 60%;
}


.container .card  h2{
    font-size: 1.4rem;
    font-family: 'Anton', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    color: #333;
}

.container .card .content{
    margin-top: -15%;
    height: 20%;
    position: relative;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.container .card:hover .content{
    margin-top: 10%;
}

.container .card .content .title{
    margin-top: 27%;
    position: relative;
    transition:  0.3s ease-in-out;
}

.container .card .content .text{
    opacity: 0;
    visibility: 0;
    transition: 0.5s ease-in-out;
}

.container .card .content .text p{
    font-family: 'Quicksand', sans-serif;
    text-align: justify;
    line-height: 1.2;
    padding: 12px;
    font-size: 0.9rem;
    color: #000000;
    font-weight: 700;
    text-indent: 40px;
}

.container .card:hover .content .text{
    margin-top: -40%;
    opacity: 1;
    visibility: 1;
}

.container .card:hover .content .title{
    opacity: 0;
    visibility: 0;
}


/* Expertise Style*/

.expertise{
    display: flex;
    height: 80vh !important;
    flex-direction: row;
    padding: 30px;
}

.expertise .left{
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.expertise .left .img{
    width: 35%;
    padding: 10px;
}

.expertise .left .img img{
    max-width: 100%;
}

.expertise .right{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise .right .content h1{
    font-family: 'Saira Stencil One', cursive;
    color: #E6782F;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.expertise .right .content p{
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    text-align: justify;
    line-height: 1.6;
    margin: 20px;
    font-weight: 500;
}

.expertise .right .imgs-bottom{
    height: 50%;
    display: flex;
    flex-direction: row;
}

.expertise .right .imgs-bottom .horizontal{
    width: 50%;
    display: flex;
    flex-direction: row;
}

.expertise .right .imgs-bottom .horizontal img{
    height: 80%;
}

.expertise .right .imgs-bottom .vertical{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.expertise .right .imgs-bottom .vertical img{
    width: 50%;
    margin: 20px;
}

/*Contact  Style*/
.contact{
    background-repeat: no-repeat;
    background-size:cover ;
    display: flex;
    flex-direction: row;
}

.contact .left,
.contact .right{
    width: 50%;
    height: 100%;
    margin: 10px;
    padding: 50px;
}

.contact .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact .left h1{
    color: #fff;
    text-transform: uppercase;
    font-size: 4rem;
    letter-spacing: 1px;
    text-shadow: 6px 6px 0 #E6782F;
    font-family: 'Anton', sans-serif;
}

.contact form{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: max-content;
    width: 100%;
    padding: 15px;
    background: rgba(230, 120, 47, 0.64);
    border-radius: 12px;
}

.contact form label{
    color: #fff;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-family: 'Anton', sans-serif;
    margin-top: 8px;
}

.contact form input{
    border-radius: 8px;
    border: none;
    padding: 8px;
    color: #686464;
    width: 450px;
}

.contact form select{
    border-radius: 8px;
    font-size: 1.2rem;
    padding: 5px;
    width: 450px;
}

.contact form select option{
    color: #686464;
}

.contact form select:focus,
.contact form select:valid{
    color: #686464;
    font-size: 1rem;
}

.contact form .request{
    height: 120px;
    border-radius: 8px;
    padding: 5px;
    width: 450px;
    resize: vertical;
}

.contact form .btn_submit{
    width: 90%;
    border: none;
    text-transform: uppercase;
    color: #fff;
    background: #E6782F;
    border-radius: 99px;
    text-align: center;
    margin-top: 30px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    font-size: 1.4rem;
    cursor: pointer;
}

#mensagem-container {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

#mensagem {
    font-weight: bold;
}

#mensagem.erro {
    color: #ff0000;
}

#mensagem.sucesso {
    color: #008000; 
}


/*Footer Style*/

footer{
    height: 10vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-medias{
    width: 25%;
    height: 60%;
    display: flex;
    justify-content: space-between;
}

footer .social-medias img{
    height: 100%;
}

footer .social-medias img:hover{
    height: 110%;
}

footer p{
    font-family: 'Quicksand', sans-serif;
    margin-left: 50px;
    color: #333;
    font-weight: 700;
}

@media screen and  (max-width: 1000px ) {

    body{
        max-width: 100%;
        background: #ffffff;
    }

    .parallax-section.home{
        height: 70%;
        width: 100%;
    }

    .content-home {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .content-home h1{
        font-size: 250%;
    }

    .content-home .texts-animation{
        width: 100%;
        padding: 4%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-home .texts-animation span.typed{
        font-size: 150%;
    }

    .content-home h1{
        text-shadow: 3px 3px 0 #E6782F;
    }

    .content-home .texts-animation span.typed{
        text-shadow: 3px 3px 0 #000000;
    }

    .about-us {
        margin-top: -10%;
        width: 100%;
        flex-direction: column;
    }

    .about-us .left p,
    .about-us .right p{
        font-size: 80%;
        margin-top: 3%;
        line-height: 140%;
        text-indent: 20%;
        letter-spacing: 1px;
    }

    .about-us .left h1,
    .about-us .right h1{
        font-size: 1.5rem;
        padding: 4%;
    }

    .about-us .left, 
    .about-us .right{
        width: 100%;
        padding: 10px;
    }

    .about-us .right .box .title img{
        height: 30px;
    }

    .about-us .left img{
        display: none;
    }

    .services h1{
        font-size: 2rem;
    }

    .parallax-bg.bg-2 img{
      height: 110vh;
    }

    .containers{
        max-width: 100%;
    }

    .container{
        width: 70%;
        margin: 5px;
        padding: 5px;
    }
    .card{
        max-height: 200px;
    }
 
    .card:hover{
        max-height: 250px;
    }

    .container .card h2 {
        font-size: 1.1rem;
    }

    .container .card .content{
        height: 50%;
        margin-top: -10%;
    }

    .container .card .content .text p{
        font-size: 0.8rem;
        text-indent: 5%;
        padding: 2%;
        letter-spacing: 1px;
    }

    .expertise{
        padding: 0;
        display: flex;
        flex-direction: column;
        height: max-content;
    }

    .expertise .right,
    .expertise .left{
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .expertise .right{
        align-items: center;
        justify-content: center;
    }

    .expertise .left{
        flex-direction: row;
        padding: 5px;
    }

    .expertise .left .img{
        height: 50%;
    }

    .expertise .left .img img{
        max-height: 100%;
    }

    .expertise .right .content{
        margin-top: -15%;
    }

    .expertise .right .content h1{
        font-size: 1.5rem;
        margin-left: 5%;
    }

    .expertise .right .content p{
        font-size: 1rem;
        padding: 0;
    }

    .expertise .right .imgs-bottom{
        display: none;
    }

    .contact{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .contact{
        margin-top: -10%;
    }

    .contact .left{
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .contact .left h1{
        font-size: 1.6rem;
        text-shadow: 3px 3px 0 #E6782F;
    }

    .parallax-section .contact{
        height: 100%;
    }

    .contact .right{
        width: 100%;
    }

    .contact .right form{
        margin-top: 0;
    }

    .contact .right form input,
    .contact .right form select,
    .contact .right form .request{
        max-width: 100%;
    }

    .contact .left,
    .contact .right{
        padding: 10px;
    }

    footer .social-medias img{
        height: 80%;
    }

    footer .social-medias img:hover{
        height: 80%;
    }
}

@media screen and  (min-width: 420px) and (max-width: 800px ){
    .container .card .content{
        margin-top: -20%;
    }

    .container {
        width: fit-content;
    }
    
        .parallax-section.home{
        height: 70%;
    }
}

@media screen and  (min-width: 600px) and (max-width: 1000px ){

    .about-us .left,
    .about-us .right{
        padding: 2%;
    }

    .about-us .left h1,
    .about-us .right h1{
        font-size: 2.2rem;
    }

    .about-us .left p,
    .about-us .right p{
        font-size: 1.3rem;
    }

    .about-us .right .box .title img{
       height: 60px;
    }

    .container .card .content{
        margin-top: -20%;
    }

    .container {
        width: fit-content;
    }

    .contact .right{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact .right form{
        width: fit-content;
    }
    
    .parallax-section.home{
        height: 70%;
    }
}

@media screen and  (min-width: 1000px){
    .contact .right form input,
    .contact .right form select,
    .contact .right form textarea{
        width: 90%;
    }
}

@media screen and  (min-width: 1000px) and (max-width: 1300px ) { 
    .expertise .imgs-bottom .horizontal{
        max-height: 80%;
    }

    .parallax-section.home{
        height: 80%;
    }

    .content-home{
        width: 55%;
    }
}