
/*  lodos promos*/

.card-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
  }

  .card-list li {
    width: 120px;
    height: 160px;
    perspective: 1000px;
    cursor: pointer;
  }

  .card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
  }

  .card-list li:hover .card {
    transform: rotateY(180deg);
  }

  .card-front h5 {
      font-size: 12px;
      padding: 15px;
      margin: 5px;
  }

  .card-front,
  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
  }

  .card-front {
    padding: 10px;
    background: #ffffff10;
    color: white;
  }

  .card-front img {
    width: 80%;
    height: auto;
    object-fit: contain;
  }

  .card-back {
    transform: rotateY(180deg);
    background: linear-gradient(to right, rgba(20,40,60,0.9), rgba(20,30,50,0.9));
    color: #00f2fe;
    font-size: 0.85rem;
    padding: 8px;
  }

  .card-icon {
    font-size: 2rem;
  }

  .card-title {
    margin: -16px 0 0 0;
    font-size: 1rem;
    font-weight: bold;
  }

