body{
    background-image: url('/img/fundo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 180%;
}

.container{
    display: flex;
    flex-direction: column;
    
}

.page{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.page-area-dados{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    width: 90%;
}

.page-area-texto{
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    padding: 10px;
    gap: 40px;
    justify-content: center;
    
}

.page-dados{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    background-color: #00000080;
    padding: 15px;
    border-radius: 10px;
    justify-content: center;
    min-width: 300px;

}

.page-dados h2{
    color: yellow;
}

.page-dados div{
    color: #fff;
}

.video{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.video-area{
    background-color: black;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 25px #fff;
}

.video iframe{
    border-radius: 10px;
}

.button-fale{
    color: #fff;
    border: 2px solid;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #00000080;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 15px ;
}

.button-fale:hover{
    box-shadow: 0 0 5px;
}

.button-fale i{
    font-size: 50px;
}

.area-fale-conosco{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60vh;
    flex-direction: column;
}

.area-fale-btn{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.area-fale-btn a{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.area-fale-btn i{
    font-size: 50px;
}

.btn-fale{
    border: 2px solid #fff;
    width: 200px;
    height: 200px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000080;
    color: #fff;
    cursor: pointer;
}

.btn-fale:hover{
    box-shadow: 0 0 25px;
}

.consultores{
    width: 100%;
    max-width: 800px;    
    display: none;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: #00000080;
    color: #fff;
    padding: 20px;
}



.consultores a:hover{
    color: yellow;
}

.consultores h2{
    color: yellow;
}

@media screen and (max-width:1089px) {

    body{
        background-size: 800%;
    }

    .container{
        display: block;
        margin: auto;
    }

   .header{
        position: relative;
   }

   .page{
        margin: auto;
        padding: 20px;
   }

   .area-rede-social{
       flex-direction: column;
       align-items: flex-end;
   }


   .video-area{
        max-width: 300px;
    }

    .page-area-texto{
        flex-wrap: wrap;
    }

}



@media screen and (max-width:600px) {

   body{
       background-image: none;
   }

    .page-area-texto{
        flex-wrap: wrap;
    }

    .page-area-texto{
        display: none;
    }

}




