* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Ativa o efeito de rolagem suave */
}

body {
    background-color: #D7CBC1;
    font-family: inter;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 85vw;
}

.navigation {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    width: 100%;
    height: 100px;
    background-color: #5B3C26;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation a {
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    display: flex;
    justify-content: space-between;
    min-height: 70vh;
    background: rgb(154, 122, 97);
    background: linear-gradient(90deg, rgba(154, 122, 97, 1) 0%, rgba(223, 175, 138, 1) 100%);

}

.banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5%;
    padding: 0 7%;
}

.banner-subtitle {

    color: #F1E0C6;
    font-size: clamp(16px, 3vw, 30px);
    padding-right: 20%;
}

.banner-buttons {
    display: flex;
    justify-content: space-between;
}

.banner-b1 {
    background-color: #5B3C26;
    color: #fff;
    font-size: clamp(16px, 2vw, 28px);
    padding: 2% 4%;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
}

.banner-b2 {
    background-color: #fff;
    color: #5B3C26;
    font-size: clamp(16px, 2vw, 28px);
    padding: 2% 4%;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
}

.banner img {
    object-fit: cover;
    max-width: 40vw;
    height: auto;
    width: 1050px;

}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    margin: 100px 0;
}

.h2 {
    font-size: clamp(24px, 4vw, 50px);
    color: #5B3C26;
    border-bottom: 3px solid #91623e;
}

.services-article {
    display: flex;
    min-height: 66vh;
    padding: 50px;
    background-color: #ECECEC;
    border-radius: 15px;
    gap: 50px;
}

.title {
    font-size: clamp(30px, 3vw, 46px);
    color: #5B3C26;
}


.text {
    font-size: clamp(16px, 2vw, 28px);
    color: #5B3C26;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    border: 2px solid #0E801F;
    border-radius: 10px;
    color: #0E801F;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 28px);
    padding: 10px 30px;
    gap: 15px;

}

.services-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.services-article img {
    object-fit: cover;
    width: 33%;
    height: auto;
    border-radius: 15px;
    border: 2px solid black;
}

.list-style {
    margin: 0 2% 0 3%;
}

.list-space {
    margin: 0 3% 0 4%;
}

.space-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aboutMe {
    display: flex;
    justify-content: space-between;
    gap: 10%;
    margin-bottom:100px;
}

.aboutMe img {
    object-fit: cover;
    height: 66vh;
    border: 2px solid black;
    border-radius: 15px;
}

.aboutMe-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.name {
    display: flex;
    align-items: center;
    gap: 2%;
}

.separator {
    display: flex;
    width: 5%;
    height: 1px;
}

.separator span {
    border: 1px solid #5B3C26;
    width: 100%;
}

.name p {
    font-size: clamp(24px, 4vw, 50px);
    color: #5B3C26;
}

footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: gray;
    width: 100%;
    color: #fff;
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-div {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin: 20px 0 40px 0;
}

.social p {
    font-size: clamp(16px, 3vw, 28px);
}

@media (max-width: 1000px) {
    .services-article {
        flex-direction: column;
    }

    .services-article img {
        height: 33%;
        width: auto;
    }

    .services-right {
        align-items: center;
    }

    .navigation {
        justify-content: center;
    }

    .banner img {
        display: none;
    }

    .aboutMe {
        flex-direction: column;
    }

    .navigation a {
        display: none;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .banner {

        background: linear-gradient(0deg, rgba(154, 122, 97, 1) 0%, rgb(211, 144, 93) 100%);

    }

    .services {
        gap: 50px;
        margin: 50px 0;
    }

    .center {
        text-align: center;
    }

    .aboutMe {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .aboutMe img{
        margin-bottom: 4%;
    }

}