
.bienestar {
    /* background-color: aquamarine; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: smaller;
}

.bienestar__title {
  margin: auto 0.5%;
  width: 100vw;
  font-size: large;

}
.bienestar__title-h5 {
    text-transform: uppercase;
    padding: 20px;
    background-color: burlywood;
    background:#b9d8f1 ; 
    font-size: medium;
}

.bienestar__title-p {
    /* margin-top: 40px; */
    text-align: left;
    margin: 40px auto;
    
}

.bienestar__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px;
    
  
    /* border: solid 1px ; */
    
}

.bienestar__content-text {

}


.bienestar__content-h3 {
    padding: 20px;
    background-color: burlywood;
    background:#b9d8f1 ; 
    text-align: center;
    text-transform: uppercase;
    margin-left: 15px;
    font-size: medium;
}

.bienestar__content-p {
    text-align: left ;
    margin-left: 15px;
}

.bienestar__content-img {
    width: 50vw;
    height: 50vw;
}

/*--------------------------------------------*/

.animen {
    animation-duration: 5s;
    animation-name: slidein;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 300%;
    }
  
    75% {
      font-size: 300%;
      margin-left: 25%;
      width: 150%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }


/* ----------------------------------------- */
/* -----        Meia Queroes           ----- */
/* ----------------------------------------- */

@media (max-width:800px){
    .bienestar {
      font-size: clamp(2.0vw, 2.0rem, 12px) !important;
      /* width: 100%; */
    }
    .bienestar__content {
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
        font-size: clamp(2.0vw, 2.0rem, 12px);
        
    }
    .bienestar__content-img {
        width: 100%;
        display: flex;
        margin-bottom: 20px;
    }

}