.invitados {
    margin: 50px 0px 200px 0px;
  }
  .especiales {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .especial-subtext {
    color: rgba(38, 196, 195, 1);
  }
  #psi-contenedor-principal {
    display: flex;
    flex-direction: column; /* Organiza las categorías en columnas */
  }
  
  .psi-categoria {
    width: 70%; /* Aumenta el ancho de la barra de psicólogos */
  }
  
  .psi-elementos {
    display: flex;
    flex-wrap: nowrap; /* Permite que los elementos se envuelvan a la siguiente línea */
    flex-direction: row; /* Organiza los elementos en filas */
    justify-content:space-between;
    margin-right:5%;
  }
  
  .psi-elemento {
    background-color: #26C4C3;
    height: 90px;
    margin-right: 5px;
    width: 5%; /* Disminuye el ancho de las otras barras */
  }
  .psi-categoria-contenido{
    display: flex;
    color: #fff;
    font-size: 27px;
    background-color: #26C4C3;
    height: 90px;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  #nut-contenedor-principal {
    display: flex;
    flex-direction: column; /* Organiza las categorías en columnas */
  }
  
  .nut-categoria {
    width: 70%; /* Aumenta el ancho de la barra de nutricionistas */
  }
  
  .nut-elementos {
    display: flex;
    flex-wrap: nowrap; /* Permite que los elementos se envuelvan a la siguiente línea */
    flex-direction: row-reverse; /* Organiza los elementos en filas */
    justify-content:space-between;
  }
  
  .nut-elemento {
    background-color: #72D5D5;
    height: 90px;
    margin-right: 5px;
    width: 5%; /* Disminuye el ancho de las otras barras */
  }
  
  .nut-categoria-contenido{
    display: flex;
    color: #245065;
    font-size: 27px;
    background-color: #72D5D5;
    height: 90px;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  
  #cons-contenedor-principal {
    display: flex;
    flex-direction: column;
  }
  
  .cons-categoria {
    width: 70%; /* Aumenta el ancho de la barra de consejeros */
  }
  
  .cons-elementos {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 5%;
  }
  
  .cons-elemento {
    background-color: #3C84A8;
    height: 90px;
    margin-left: 4%;
    width: 5%; /* Disminuye el ancho de las otras barras */
  }
  
  .cons-categoria-contenido{
    display: flex;
    color: #fff;
    font-size: 27px;
    background-color: #3C84A8;
    height: 90px;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  

@media (max-width: 1000px){
  .invitados{
    margin-bottom: 100px;
  }
}

@media (max-width: 576px){
  .invitados {
    display: none;
  }
}