
/* *FALE-CONOSCO */
.fale-conosco{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    background-color: var(--branco);
}

.fale-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    padding: 0 1rem;
}

.fale-content .fale-title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fale-content .fale-title h1{
    font-size: max(40px);
    margin: 3rem 0 2rem 0;
    color: var(--azul);
    border-bottom:3px solid var(--amarelo) ;
    width: fit-content;
}

.fale-address{
    text-wrap: pretty;
}
.fale-content .fale-address h3{
    font-size: max(20px);
    margin: 1rem 0;
    color: var(--azul);
    width: fit-content;
}
.fale-content .fale-address p{
   font-size: 16px;
   margin-bottom: 10px;
}
.fale-content .fale-address a{
   color: var(--verde);
   font-weight: 500;
}

.fale-content div:nth-of-type(2){
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    margin-bottom: 2rem;
}

.fale-content .fale-img{
    align-self: center;
    width: 500px;
    height: 400px;  
}
.fale-content .fale-img img{
    width: 100%;
    object-fit: contain;   
}