.parallax {
    background-image: url('../images/clientes.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
}

.card-header {
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 15px 10px 0;
}

.card {
  display: flex;
  color: #EFF6E0;
  width: calc(100% - 20px); 
  margin-bottom: 5em; 
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 20, 0.6); /* F O N D O */
  max-width: calc((150% - 4em) / 2);
  background-color: #219EBC;
}

.avatar1Container{
display: flex;
justify-content: center;
width: 20em;
}

.avatar {
  padding: 1em 0;
  width: 250px; 
  height: 120px; 
  box-shadow: rgba(0, 0, 0, 0.801);
}
.avatar1 {
  padding: 1em 0;
  width: 230px; 
  height: 260px; 
  border-radius: 50%;
}
.avatar2 {
  padding: 1em 0;
  width: 250px; 
  height: 220px; 
}
.avatar3 {
  width: 60px; 
  height: 50px; 
}

.necesidadSolucion{
  text-decoration: underline;
  text-underline-offset: 7px;
}


/* BOTON NONE */

.boton-none{
  display: flex;
  justify-content: space-between;
}


.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.9s ease;
}


.expandableCard.expanded .additionalContent {
  margin-left: 30px;
  max-height: 5000px;
  transition: max-height 5s ease;
}



/* Estilos para la card */
.expandableCard {

  border-radius: 5px;
  padding: 15px;
  margin-bottom: 75px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Botón personalizado */
.btn-like {
  background-color: #FB8500;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.btn-like:hover {
  background-color: #023047;
  color: #FB8500;
}

.btn-like1, .btn-like2 {
  background-color: #FB8500;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.btn-like1:hover, .btn-like2:hover {
  background-color: #023047;
  color: #FB8500;
}



  @media only screen and (min-width: 1200px) and (max-width: 1700px){
    .card {
      max-width: calc(100% - 15em);
    }

  }
  
  @media only screen and (min-width: 992px) and (max-width: 1200px)  {
  
  
    .tituloBody {
      font-size: 1.5em; 
    }

    .card {
      max-width: calc((100% - 10em));
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 992px)  {
  
    .tituloBody {
      font-size: 1.5em;
    }

    .card {
      max-width: calc((100% - 2em));
    }
  
  }
  @media (max-width: 768px) {

    .tituloBody {
      font-size: 1em; 
    }
    
    .card-header {
      border-right: none;
      border-bottom: 1px solid;
    }
    .card {
      max-width: calc((100% - 5em));
    }
    .avatar1 {
      width: 180px; 
      height: 203px; 
      border-radius: 50%;
    }
    .btn-like1{
      height: 36px;
    }
  }

@media (max-width: 527px){
  .tituloBody {
    font-size: 0.7em; 
    margin-top: 2em;
    margin-bottom: 1em;
  }
  .btn-like1{
    height: 36px;
  }
}

@media (max-width: 420px){
  .tituloBody {
    font-size: 0.7em; 
    margin-top: 2em;
    margin-bottom: 1em;
  }

  .card {
    max-width: calc((100% - 1em));
  }
  .btn-like1{
    height: 36px;

  }
}

@media (max-width: 360px){
 .btn-like, .btn-like1{
    padding-left: 5px;
    padding-right: 5px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fa-external-link-alt{
    display: none !important;
  }
  
}


