* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Avenir', sans-serif;
    text-decoration: none;
}

header {
    width: 100vw;
    height: 23vh;
    display: flex;
    justify-content: space-around;
    background: #fff;
    align-items: center;
    padding: 0 40px;
}

.header-left img {
    height: 50vh;
}

.btn-whatsapp {
    width: 260px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    background: #03910d;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #07af12;
}

.about {
    width: 100vw;
    background: #3D475C;
    color: #ffffff;
    height: 75vh;
}

.about-left {
    display: inline-block;
}

.about-left h2 {
    font-size: 45px;
    text-align: center;
    padding-top: 26px;
}

.about-left p {
    width: 60vw;
    margin: 25px;
    padding-left: 50px;
    text-align: justify;
    font-size: 28px;
}

.about-right {
    display: inline-block;
    position: absolute;
    padding-top: 20px;
}

.about-right img {
    height: 70vh;
    padding-left: 40px;
}

.wrapper {
    background-color: #B59786;
    color: #ffffff;
}

.wrapper h2 {
    font-size: 45px;
    text-align: center;
    padding: 26px;
}

.wrapper p {
    padding: 20px;
    text-align: center;
    font-size: 28px;
}

.container-left {
    display: inline-block;
    width: 50%;
}

.container-left img {
    position: relative;
    width: 100vw;
    
}

.container-right {
    display: inline-block;
    width: 50%;
    position: absolute;
    margin-top: 30px;
}

.container-right-frist {
    background: rgba(33, 37, 41, 0.3);
    height: 80px;
    width: 480px;
    margin-left: 100px;
}

.container-right-frist h2 {
    padding: 10px;
    font-size: 40px;
    text-align: center;
    align-items: center;    
}

.container-right-box {
    margin-top: 30px;
    display: flex;
    justify-content:space-around;
}

.container-right-second {
    margin-top: 30px;
    padding: 30px;
    background: rgba(33, 37, 41, 0.3);
    width: 300px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-right-second button {
    width: 250px;
    height: 52px;
    margin: 15px;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    font-size: 17px;
    padding-bottom: 10px;
}

.contact {
    width: 100vw;
    height: 60vh;
    background: rgba(209, 209, 209, 0.3);
    color: #353536;
}

.contact h2 {
    padding: 20px;
    font-size: 40px;
    text-align: center;
    align-items: center;
}

.contact p {
    font-size: 20px;
    text-align: center;
    align-items: center;
    padding: 10px 30px;
}

.contact ul {
    display: flex;
    justify-content: space-around;
    margin: 30px;
    list-style: none;
    font-size: 30px;
}

.contact a {
    cursor: pointer;
    color: #353535;
}

.contact .btn-whatsapp {
    width: 450px;
    height: 60px;
    margin: 10px 460px;
    background: #03910d;
    color: #ffffff;
    font-size: 25px;
}

.contact .btn-whatsapp:hover {
    background: #07af12;
}


.form {
    width: 100vw;
    height: auto;
    background-color: #CFBFB2;
    color: #353536;
    display: flex;
    justify-content: space-around;
}

.form-left {
    width: 35vw;
    height: 75vh;
    background: #b59786;
    margin: 20px;
    border-radius: 40px;
}

.form-left h3 {
    font-size: 30px;
    color: #ffffff;
    padding-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

input, textarea {
    display: flex;
    margin: auto;
    margin-bottom: 10px;
    padding: 10px;
    width: 30vw;
}

textarea {
    height: 120px;
    margin-bottom: 30px;
}

.form button {
    width: 250px;
    height: 40px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    background: #03910d;
    color: #ffffff;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

button:hover {
    background: #07af12;
}

.form-right {
    width: 50vw;
    margin-top: 5%;
}

.form-right p {
    font-size: 22px;
    margin-top: 5%;
    text-align: justify;
}

.form-right h3 {
    font-size: 35px;
    text-align: center;
}

footer {
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: space-around;
    background: #fff;
    align-items: center;
    color: #3D475C;
    
}

footer img {
    height: 35vh;
}

.footer {
    background: #fff;
    color: #3D475C;
    font-size: 14px;
    border-top: 0.5px solid #3D475C;
    padding: 5px;
    text-align: center;
}
.whats {
   position: fixed;
   bottom: 10px;
   right: 30px;
   z-index: 9999;
}

/* --------------- RESPONSIVO --------------- */
@media screen and (max-width: 450px) {
    
    header {
        height: 20vh;
        display: flex;
        justify-content: center;
    }
    
    .btn-whatsapp {
       display: none;
    }
     
    .about {
        height: 50%;
        width: 100%;
    }
   
    .about-left h2 {
        font-size: 28px;
        padding-top: 10px;
    }

    .about-left p {
        width: 100vw;
        margin: 0;
        padding: 10px;
        text-align: justify;
        font-size: 18px;
    }

    .about-right {
        position: relative;
        padding: 15px;
    }

    .about-right img {
        height: 60vh;
        width: 100%;
        padding-right: 30px;
    }

    .wrapper h2 {
        font-size: 30px;
        padding-top: 20px;
    }

    .wrapper p {
        width: 100vw;
        text-align: justify;
        font-size: 18px;
    }


    .container-left {
        display: inline-block;
        width: 25%;
    }
    
    .container-left img {
        position: relative;
        width: 100vw;
        height: 55vh;
    }
    
    .container-right {
      margin: 10px 0 0 90px; 
    }
    
    .container-right-frist {
        height: 40px;
        width: 190px;
        margin: 0 10px;
    }
    
    .container-right-frist h2 {
        padding: 10px;
        font-size: 20px;
        color: #ffffff;
    }
    
    .container-right-box {
        margin: 0;
    }
    
    .container-right-second {
        padding: 3px;
        width: 200px;
        height: 290px;
        margin: 5px;
    }
    
    .container-right-second button {
        width: 150px;
        height: 32px;
        margin: 4px;  
        padding: 3px;      
        font-size: 10px;
        text-decoration: none;
        color: #000000;
    }

    .contact {
        height: 40vh;
    }
    
    .contact .btn-whatsapp {
     display: none;
    }
            
    .form {
        display: flex;
        flex-direction:column-reverse;
    }

    .form-left {
        width: 90vw;
        height: 60vh;
    }

    .form-left h3 {
        font-size: 28px;
    }

    input, textarea {
       width: 80vw;
    }
 
    .form-right {
        width: 95vw;
        margin: 10px;
    }

    .form-right p {
        font-size: 22px;
        margin-top: 5%;
        text-align: justify;
    }

    .form-right h3 {
        font-size: 35px;
        text-align: center;
    }

    footer {
        height: 15vh;
    }

    .footer-left {
        display: none;
    }
    

    .footer-right {
        font-size: 16px;
        padding: 0;
        margin: 0;
        color: #000;
    }

    .whats {
        right: 10px;  
     }
}