  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;400;500&display=swap');
:root{
    --color-green: #3DD65F;
    --color-red: #8C2F30;
    --color-gray: #6d6d6d;
    --color-white: #fff;
}
html{
    scroll-behavior: smooth;
}
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Inter', sans-serif;
}
.content{
    width: 86%;
    height: 100%;
    /* background: #fff; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main{
    width: 86%;
    height: 100%;
    /* background: #fff; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
header{
    width: 100%;
    height: 120px;
    background-color: var(--color-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logotipo{
    padding: 5px;
}
.menu{
    padding: 2px;
}
.menu ul{
    width: 100%;
    display: flex;
    list-style: none;
}
.menu ul li{
    margin: 5px;
    font-weight: 200;
    text-transform: uppercase;
    font-size: 13px;
}
.menu .whatsapp{
    background-color: var(--color-green);
    border-radius: 30px;
}
.menu ul li a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
}
.slider{
    width: 100%;
    height: 500px;
    margin-top: 56px;
    display: flex;
    background: url("http://renovaembreagens.com.br/wp-content/uploads/2021/11/bg-slider.png");
    /* background-color: #8C2F30; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: cover; */
}
.sliderContent{
    width: 84%;
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
}
.imgSlider{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imgSlider img{
    max-width: 100%;
    max-height: 100%;
}
.textSlider{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.textSlider h1{
    font-size: 40px;
    color: var(--color-white);
    text-transform: uppercase;
    text-align: center;
}
.textSlider button{
    width: 80%;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 30px;
    border: none;
    margin-top: 20px;
}
.textSlider button a{
    width: 100%;
    display: block;
    padding: 10px;
    text-decoration: none;
    color: var(--color-white);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}
.quemSomos{
    margin-top: 56px;
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.text{
    width: 54%;
    padding: 5px 0;
}
.text h2{
    color: var(--color-red);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}
.text p{
    text-align: justify;
    margin: 10px 0;
    color: var(--color-gray);
    font-size: 16px;
}
.img{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img img{
    max-width: 100%;
    max-height: 100%;
}
.servicos{
    width: 100%;
    height: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.servicosTitle{
    width: 100%;
    height: 50px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.servicosTitle h2{
    width: 24%;
    background-color: var(--color-red);
    border-radius: 30px;
    padding: 10px;
    color: var(--color-white);
    display: flex;
    justify-content: center;
}
.servicosTitle h2 img{
    padding: 5px;
}
.servicosIcons{
    width: 32%;
    min-height: 100px;
    margin: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicosIcons h2{
    font-size: 20px;
    color: var(--color-red);
    padding: 10px 0;
    text-transform: uppercase;
}
.servicosIcons p{
    color: var(--color-gray);
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
}
.servicosIcons img{
    max-width: 40%;
    max-height: 40%;
    display: flex;
}
.ondeEstamos{
    width: 100%;
    height: 100%;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ondeEstamosTitle{
    width: 100%;
    height: 50px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.ondeEstamosTitle h2{
    width: 30%;
    background-color: var(--color-red);
    border-radius: 30px;
    padding: 10px;
    color: var(--color-white);
    display: flex;
    justify-content: center;
}
.ondeEstamosTitle h2 img{
    padding: 5px;
}
.ondeEstamosMaps{
    width: 100%;
    height: 100%;
}
.ondeEstamosMaps iframe{
    width: 1000px;
    height: 400px;
    border: none;
}
.ondeEstamosInfo,
.ondeEstamosWhatsApp{
    width: 30%;
    margin-top: 20px;
}
.ondeEstamosInfo p{
    color: var(--color-gray);
    font-size: 16px;
}
.ondeEstamosWhatsApp{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ondeEstamosWhatsApp a{
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-green);
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 30px;
}
footer{
    width: 100%;
    height: 40px;
    margin-top: 20px;
    background-color: var(--color-red);
    text-align: center;
    color: var(--color-white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 650px) {
    .content{
        flex-wrap: wrap;
        justify-content: center;
    }
    .sliderContent{
        flex-wrap: wrap;
    }
    .imgSlider{
        width: 100%;
        padding: 5px;
    }
    .imgSlider img{
        max-width: 60%;
        max-height: 60%;
    }
    .textSlider{
        width: 100%;
    }
    .textSlider h1{
        font-size: 30px;
    }
    .quemSomos{
        flex-wrap: wrap;
    }
    .text{
        width: 100%;
    }
    .img{
        display: none;
    }
    .servicos{
        flex-wrap: wrap;
    }
    .servicosTitle{
        width: 100%;
    }
    .servicosTitle h2{
        width: 50%;
    }
    .servicosIcons{
        width: 48%;
    }
    .ondeEstamos{
        flex-wrap: wrap;
    }
    .ondeEstamosTitle{
        width: 100%;
    }
    .ondeEstamosTitle h2{
        width: 60%;
    }
    .ondeEstamosMaps{
        width: 550px;
    }
    .ondeEstamosMaps iframe{
        width: 100%;
    }
    .ondeEstamosInfo{
        width: 40%;
    }
    .ondeEstamosWhatsApp{
        width: 55%;
    }
}