.mesadeluz{
    position: relative;
    display: flex;
    background-position: center !important;
    height: 600px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    overflow: hidden;
    margin: 1em;
  }
  .mesadeluz::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0;
    left: 0;
    background-size: cover;
    z-index: 0;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 70%, rgba(0,0,0,1) 100%);
    border-radius: 10px;
    transition: .3s ease;
  }
  .mesadeluz .title{
    color: white;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    text-align: left;
    z-index: 1;
    font-size: 1em;
    font-weight: 600;
    break-after: always;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
  }
  .mesadeluz .title img{
    margin-right: 10px;
  }
  .mesadeluz .bottom{
    background: rgba(0, 0, 0, 0.5);
    color: white;
    position: absolute;
    bottom: 10px;
    left: 0px;
    text-align: left;
    z-index: 1;
    font-size: 1em;
    font-weight: 600;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    align-items: center;
  }
  .mesadeluz .bottom img{
    filter: grayscale(1) invert(1) contrast(2);
    margin-left: 5px;
  }
  .mesadeluz .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .mesadeluz .icon img{
    width: 60px;
    transition: .3s ease;
  }
  .mesadeluz:hover{
    transition: .3s ease !important;
    filter: contrast(1);
  }
  .mesadeluz:hover .icon img{
    transform: scale(1.1);
    transition: .3s ease;
  }