:root {
    --primary-color: #F1592A;
    --secondary: #565454;
    --tertiary: #ffffff;
    --bg-color: #EBE9E8;
    --btn-color: #17CA74;
}
body{
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: var(--primary-color);
}
.logo-icon{
    display: flex;
    align-items: center;
    margin-left: 80px;
}
.logo-icon img{
    width: 70px;
}
.call-me{
    margin-right: 150px;
}
.call-me span{
    color:var(--tertiary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
.left-side{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex:1;
}
.left-side h1{
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 3.7rem;
    line-height: 1.2;
    margin: 0;
    margin-left: 50px;
    padding: 0;
    color: var(--secondary);
}
strong{
    color: var(--primary-color);
}
.left-side h2{
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    font-size: 1.4rem;
    text-align: justify;
    color: var(--secondary);
    width: 75%;
    max-width: 535px;
    margin-top: 20px;
    line-height: 1.2;
}
.call-to-action button{
    background-color: var(--btn-color);
    border: none;
    border-radius: 10px;
    margin-top: 30px;
    width: 250px;
    height: 60px;
    cursor: pointer;
}
.call-to-action a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--tertiary);
}
a img{
    width: 40px;
    margin-right: 10px;
}
.right-side{
    flex:1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.right-side img{
    height: auto;
    width: 60%;
}

/* >>>>>>>>>>>>>> CAMPO DE BENEFICIO <<<<<<<<<<<<<<<<< */

.benefits{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}
.title-benefits h3{
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}
.box-benefits{
    display: flex;
    justify-content: center;
    align-items: center;
}
.benefits-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px;
}
.benefits-info img{
    width: 100px;
}
.benefits-info span{
    text-align: center;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* >>>>>>>>>>>> Campo Sobre a Empresa <<<<<<<<<<<<<< */

.about-us{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    width: 100%;
    margin-bottom: 50px;
    background-color: var(--primary-color);
}
.left-side-about{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title-about{
   width: 80%;
}

.title-about h3{
    color: var(--tertiary);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin: 0;
}
.title-about p{
    color: var(--tertiary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.right-side-about img{
    width: 60%;
    margin-right: 50px;
}

/* >>>>>>>>>>>>> Passos Para Contratar <<<<<<<<<<<<< */

.steps{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
    margin-top: 60px;
}
.title-steps h3{
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    margin-bottom: 20px;
}
.box-steps{
    display: flex;
    justify-content: center;
    align-items: center;
}
.steps-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 150px;
}
.steps-info h4{
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin: 0;
}
.steps-info img{
    width: 100px;
}
.steps-info span{
    text-align: justify;
    color: var(--secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    width: 90%;
    margin-top: 10px;
}

/* >>>>>>>>>>>>>> Contato <<<<<<<<<<<<<<<<< */

.contact{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 100px;
}
.row-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.row-form h3{
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-top: -10px;
    margin-bottom: 5px;
}
form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
input{
    width: 450px;
    height: 40px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    background-color: rgba(241, 89, 42, 0.5) ;
    outline-color: var(--primary-color);
}
input[type=submit]{
    width: 300px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--tertiary);
    font-size: 1rem;
}
.vadidation{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 470px;
}
input[type=checkbox]{
    width: 25px;
    margin-bottom: 34px;
}
.vadidation span{
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

/* >>>>>>>>>>>>>>>>>>>>> Rodapé <<<<<<<<<<<<<<<<< */

.row-footer{
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    height: 120px;
    background-color: var(--primary-color);
}
.logo-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}
.logo-footer img{
    width: 70px;
    height: auto;
}
.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
}
.copyright span{
    font-family: 'Poppins', sans-serif;
    color: var(--tertiary);
    font-size: 1rem;
}
.social-midia{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
}
.follow span{
    font-family: 'Poppins', sans-serif;
    color: var(--tertiary);
    font-size: 1rem;
}
.midia-icon img{
    width: 35px;
    margin-top: 10px;
}
.midia-icon a{
    text-decoration: none;
}

@media (max-width:1260px) and (min-width:1024px){
    .left-side h1{
        font-size: 2.5rem;
    }
    .left-side h2{
        font-size: 1rem;
        margin-left: 40px;
    }
    .call-to-action button{
        width: 250px;
        height: 50px;
    }
    a img{
        width: 30px;
    }
    input{
        width: 450px;
    }
    input[type=submit]{
        width: 250px;
    }
    .vadidation{
        width: 470px;
    }
   
    iframe{
        width: 500px;
    }
    .copyright span{
        text-align: center;
    }
}

@media (max-width:1023px) and (min-width:768px){
    /* >>>>>>>>>>> Topo <<<<<<<<<<< */

    .call-me{
        margin-right: 50px;
    }
    .left-side h1{
        font-size: 2rem;
    }
    .left-side h2{
        font-size: 1rem;
        margin-left: 20px;
    }
    .right-side img{
        width: 80%;
    }
    .call-to-action button{
        width: 220px;
        height: 50px;
    }
    a img{
        width: 25px;
    }
    
    /* >>>>>>>>>>>> Vantagens <<<<<<<<<<<<< */

    .title-benefits h3{
        font-size: 1.2rem;
    }
    .benefits-info img{
        width: 70px;
    }
    .benefits-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>> Sobre <<<<<<<<<<<<<< */
    .about-us{
        height: 550px;
    }
    .title-about{
        width: 80%;
    }
    .title-about h3{
        font-size: 1.5em;
    }
    .title-about p{
        font-size: 0.9rem;
        text-align: justify;
    }
    .right-side-about img{
        margin: 0;
        margin-right: 30px;
        width: 150px;
    }

    /* >>>>>>>>>>>>>>> tres passos <<<<<<<<<<<<<<<<<< */

    .steps{
        margin-bottom: 80px;
        margin-top: 80px;
    }
    .title-steps h3{
        font-size: 1.2rem;
    }
    .steps-info{
        margin: 20px;
    }
    .steps-info h4{
        font-size: 1rem;
    }

    /* >>>>>>>>>>>>> Entre em Contato <<<<<<<<<<<<<< */

    .row-form h3{
        font-size: 1.4rem;
    }
    input{
        width: 350px;
    }
    input[type=submit]{
        width: 200px;
    }
    iframe{
        width: 350px;
    }
    .vadidation{
        width: 380px;
    }
    
    /* >>>>>>>>>>>> Rodape <<<<<<<<<<<<<< */

    .logo-footer img{
        width: 60px;
    }
    .copyright span{
        text-align: center;
        font-size: 0.8rem;
    }
    .follow span{
        font-size: 0.8rem;
    }
    .midia-icon img{
        width: 30px;
    }
}

@media (max-width:767px) and (min-width:645px){

    /* >>>>>>>>>>> Topo <<<<<<<<<<< */

    .logo-icon {
        align-items: center;
        justify-content: center;
        margin: 0;
        display: flex;
        flex: 1;
    }
    .call-me{
        display: none;
    }
    .content{
        flex-direction: column;
    }
    .left-side h1{
        font-size: 2rem;
        margin: 0;
        margin-top: 50px;
    }
    .left-side h2{
        font-size: 1rem;
        margin: 0;
        margin-top: 10px;
    }
    
    .call-to-action button{
        width: 220px;
        height: 50px;
    }
    a img{
        width: 25px;
    }
    
    /* >>>>>>>>>>>> Vantagens <<<<<<<<<<<<< */

    .title-benefits h3{
        justify-content: center;
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
        
    }
    .box-benefits {
        flex-direction: column;
    }
    .benefits-info img{
        width: 80px;
    }
    .benefits-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>> Sobre <<<<<<<<<<<<<< */
    
    .title-about{
        width: 90%;
        margin-top: 20px;
    }
    .title-about h3{
        font-size: 1.5em;
        text-align: center;
        margin: 0;
    }
    .title-about p{
        font-size: 0.9rem;
        text-align: justify;
        margin: 0;
        margin-top: 10px;
    }
    .right-side-about{
        display: none;
    }

    /* >>>>>>>>>>>>>>> tres passos <<<<<<<<<<<<<<<<<< */

    .steps{
        margin-bottom: 80px;
        margin-top: 80px;
    }
    .box-steps{
        flex-direction: column;
    }
    .title-steps h3{
        font-size: 1.2rem;
    }
    .steps-info{
        margin: 20px;
        width: 80%;
    }
    .steps-info h4{
        font-size: 1rem;
    }
    .steps-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>>> Entre em Contato <<<<<<<<<<<<<< */

    .contact{
        flex-direction: column-reverse;
    }
    .row-form{
        margin-top: 20px;
    }
    .row-form h3{
        font-size: 1.4rem;
    }
    input{
        width: 450px;
    }
    input[type=submit]{
        width: 190px;
    }
    iframe{
        margin-top: 20px;
        width: 600px;
    }
    .vadidation{
        width: 475px;
    }

    /* >>>>>>>>>>>> Rodape <<<<<<<<<<<<<< */

    .row-footer{
        flex-direction: column;
        height: 200px;
    }
    .logo-footer img{
        width: 50px;
        margin-top: 10px;
    }
    .copyright span{
        text-align: center;
        font-size: 0.8rem;
    }
    .follow span{
        text-align: center;
        font-size: 0.8rem;
    }
    .midia-icon img{
        width: 30px;
        margin-bottom: 10px;
    }
}
@media (max-width:644px) and (min-width:425px){

    /* >>>>>>>>>>> Topo <<<<<<<<<<< */

    .logo-icon {
        align-items: center;
        justify-content: center;
        margin: 0;
        display: flex;
        flex: 1;
    }
    .call-me{
        display: none;
    }
    .content{
        flex-direction: column;
    }
    .left-side h1{
        font-size: 2rem;
        margin: 0;
        margin-top: 50px;
    }
    .left-side h2{
        font-size: 1rem;
        margin: 0;
        margin-top: 10px;
    }
    
    .call-to-action button{
        width: 220px;
        height: 50px;
    }
    a img{
        width: 25px;
    }
    
    /* >>>>>>>>>>>> Vantagens <<<<<<<<<<<<< */

    .title-benefits h3{
        justify-content: center;
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
        
    }
    .box-benefits {
        flex-direction: column;
    }
    .benefits-info img{
        width: 80px;
    }
    .benefits-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>> Sobre <<<<<<<<<<<<<< */
    .about-us{
        height: 500px;
    }
    .title-about{
        width: 90%;
    }
    .title-about h3{
        font-size: 1.5em;
        text-align: center;
        margin: 0;
    }
    .title-about p{
        font-size: 0.9rem;
        margin: 0;
        margin-top: 10px;
        text-align: justify;
    }
    .right-side-about{
        display: none;
    }

    /* >>>>>>>>>>>>>>> tres passos <<<<<<<<<<<<<<<<<< */

    .steps{
        margin-bottom: 80px;
        margin-top: 80px;
    }
    .box-steps{
        flex-direction: column;
    }
    .title-steps h3{
        font-size: 1.2rem;
    }
    .steps-info{
        margin: 20px;
        width: 80%;
    }
    .steps-info h4{
        font-size: 1rem;
    }
    .steps-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>>> Entre em Contato <<<<<<<<<<<<<< */

    .contact{
        flex-direction: column-reverse;
    }
    .row-form{
        margin-top: 20px;
    }
    .row-form h3{
        font-size: 1.4rem;
    }
    input{
        width: 350px;
    }
    input[type=submit]{
        width: 190px;
    }
    iframe{
        margin-top: 20px;
        width: 350px;
    }
    .vadidation{
        width: 370px;
    }

    /* >>>>>>>>>>>> Rodape <<<<<<<<<<<<<< */

    .row-footer{
        flex-direction: column;
        height: 200px;
    }
    .logo-footer img{
        width: 50px;
        margin-top: 10px;
    }
    .copyright span{
        text-align: center;
        font-size: 0.8rem;
    }
    .follow span{
        text-align: center;
        font-size: 0.8rem;
    }
    .midia-icon img{
        width: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width:424px) and (min-width:320px){
    /* >>>>>>>>>>> Topo <<<<<<<<<<< */
    header{
        height: 60px;
    }
    .logo-icon {
        align-items: center;
        justify-content: center;
        margin: 0;
        display: flex;
        flex: 1;
    }
    .logo-icon img{
        width: 50px;
    }
    .call-me{
        display: none;
    }
    .content{
        flex-direction: column-reverse;
    }
    .left-side h1{
        font-size: 1.9rem;
        margin: 0;
        margin: 50px 0 5px;
        text-align: center;
    }
    .left-side h2{
        font-size: 0.9rem;
        margin: 0;
        margin-top: 10px;
        width: 88%;
    }
    .call-to-action button{
        width: 200px;
        height: 40px;
        margin-bottom: 30px;
    }
    a img{
        width: 24px;
    }
    
    /* >>>>>>>>>>>> Vantagens <<<<<<<<<<<<< */

    .benefits{
        margin: 0;
    }
    .title-benefits h3{
        justify-content: center;
        font-size: 1.2rem;
        text-align: center;
        margin: 0;
        
    }
    .box-benefits {
        flex-direction: column;
    }
    .benefits-info img{
        width: 80px;
    }
    .benefits-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>> Sobre <<<<<<<<<<<<<< */

    .about-us{
        margin-top: 0;
        height: 600px;
    }
    .title-about{
        width: 90%;
        margin-top: 20px;
    }
    .title-about h3{
        font-size: 1.5em;
        text-align: center;
        margin: 0;
    }
    .title-about p{
        text-align: justify;
        font-size: 0.9rem;
        margin: 0;
        margin-top: 10px;
    }
    .right-side-about{
        display: none;
    }

    /* >>>>>>>>>>>>>>> tres passos <<<<<<<<<<<<<<<<<< */

    .steps{
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .box-steps{
        flex-direction: column;
    }
    .title-steps h3{
        font-size: 1.2rem;
        text-align: center;
        padding: 5px;
    }
    .steps-info{
        margin: 20px;
        width: 80%;
    }
    .steps-info h4{
        font-size: 1rem;
    }
    .steps-info span{
        font-size: 0.9rem;
    }

    /* >>>>>>>>>>>>> Entre em Contato <<<<<<<<<<<<<< */

    .contact{
        flex-direction: column-reverse;
    }
    .row-form h3{
        font-size: 1.4rem;
    }
    input{
        width: 290px;
    }
    input[type=submit]{
        width: 150px;
    }
    iframe{
        width: 300px;
    }
    .vadidation{
        width: 295px;
    }
    
    /* >>>>>>>>>>>> Rodape <<<<<<<<<<<<<< */
    
    .row-footer{
        flex-direction: column;
        height: 200px;
    }
    .logo-footer img{
        width: 50px;
        margin-top: 10px;
    }
    .copyright span{
        text-align: center;
        font-size: 0.8rem;
    }
    .follow span{
        text-align: center;
        font-size: 0.8rem;
    }
    .midia-icon img{
        width: 30px;
        margin-bottom: 10px;
    }
}
