@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}
body{
    max-width: 100vw;
    max-height: 100vh;
    overflow-x: hidden;
}
::-webkit-scrollbar{
    scroll-behavior: smooth;
}
::-webkit-scrollbar-thumb{
    background-color: #161616;
}

/*header navbar*/
header{
    position: absolute;
    top: 3rem;
    left: 15rem;
    max-width: 100%;
    width: 100%;
    z-index: 1;
}

.div-header{
    display: flex;
    align-items: center;
    width: 100%;
}

.div-header img{
    width: 200px;
}

.div-header nav{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 10rem;
}

.div-header nav a{
    position: relative;
    text-decoration: none;
    color: #ffffff;
}

.div-header nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #8c4512;
    transition: .5s ease-in-out;
}

.div-header nav a:hover::after{
    width: 100%;
}

/*parte principal*/
#section-main{
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.img-main{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
    z-index: -1;
}

.div-main{
    position: absolute;
    top: 40%;
    left: 10%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.div-main h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
}

.a-button{
    width: 150px;
}

.bnt-main{
    width: 270px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: #b35613;
    color: #ffffff;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.bnt-main:hover{
    background-color: #000000;
}

.bnt-main:focus{
    transform: translateY(3px);
}

.img-pai{
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 500px;
}

.div-main p{
    font-size: 20px;
}

/*descrição serviço*/
.section-description{
    display: flex;
    justify-content: center;
    margin: 5rem auto;
}

.section-description2{
    display: flex;
    justify-content: center;
    margin: 5rem auto;
}

.div-description{
    display: flex;
    gap: 4em;
}
.div-description2{
    display: flex;
    gap: 4em;
}

.div-description2 img{
    width: 400px; 
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    animation: has-shown ease;
    animation-timeline: view();
    animation-range: cover 0% cover 50%;
}

.img-surgir{
    width: 400px; 
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    animation: has-shown ease;
    animation-timeline: view();
    animation-range: cover 0% cover 50%;
}

.div-description-p{
    display: flex;
    flex-direction: column;
    margin: 2rem auto;
    gap: 1rem;  
}

.div-description-p{
    animation: has-shown2 ease;
    animation-timeline: view();
    animation-range: cover 0% cover 40%;
}

.div-description-p h2{
    font-size: 27px;
    color: #8c4512;
}

.div-description-p p{
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.div-description-list{
    display: flex;
    align-items: center;
}

.ultimo{
    margin-bottom: 2rem;
}

.first{
    margin-top: 2rem;
}

.div-description-list svg{
    width: 18px;
    height: 18px;
    fill: #8c4512;
    margin-right: 5px;
}

.div-description-list p{
    font-size: 16px;
    font-weight: 600;
}

/*posso ajudar*/
.section-help{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 400px;
}

.section-help img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
}

.div-help{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.div-help button{
    width: 250px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: #b35613;
    color: #ffffff;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.div-help button:hover{
    background: #000000;
}

.div-help a{
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: 250px;
    font-size: 0;
}

.div-help p{
    font-size: 15px;
    color: #eb7e31;
}

.div-help h3{
    font-family: "Dosis", sans-serif;
    font-weight: 350;
    font-size: 45px;
}

/*icone whatsaap*/
#div-footer{
    position: fixed;
    bottom: 5rem;
    right: 5rem;
    animation: is-bouncing 1s alternate infinite;
}

#div-footer img{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

#div-footer svg{
    position: absolute;
    top: -10px;
    right: -1rem;
    display: block;
    cursor: pointer;
}

@keyframes is-bouncing{
    100%{
        transform: translateY(5px);
    }
}

/*has shown*/
@keyframes has-shown{
    from{
        opacity: 0;
        transform: translateY(200px);
    }
    to{
        opacity: 1;
        transform: translate(none);
    }
}
@keyframes has-shown2{
    from{
        opacity: 0;
        transform: translateX(200px);
    }
    to{
        opacity: 1;
        transform: translate(none);
    }
}

.has-show2{
    animation: has-shown2 1s ease forwards;
}

.has-show{
    animation: has-shown 1s ease forwards;
}

@media screen and (max-width: 1500px){
    .div-header{
        justify-content: center;
        flex-direction: column;
        gap: 4rem;
    }
    .div-header img{
        width: 200px;
    }
}



@media screen and (max-width: 768px){
    .div-header img{
        margin-right: 50%;
    }
    .div-main{
        top: 40%;
    }
    .div-main h1{
        font-size: 40px;
    }
    .div-description{
        flex-direction: column;
    }
    .div-description2{
        flex-direction: column-reverse;
    }
    .div-help h3{
        font-size: 45px;
    }
}