/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 09 2025 | 23:13:58 */
.contenedor-principal {
      position: relative;
      width: 350px;
      max-width: 350px;
      aspect-ratio: 3 / 2;
      overflow: hidden;
      cursor: pointer;
      border-radius: 1px;
    }

    .imagen {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0);
      transition: background-color 0.5s ease;
      pointer-events: none;
    }

    .contenedor-texto {
      position: absolute;
      bottom: -10px;
      width: 90%;
      display: flex;
      justify-content: center;
      transition: transform 0.5s ease;
    }

    .texto {
      width: 90%;
      max-width: 90%;
      text-align: center;
      color: black;
      font-size: 20px;
      line-height: 20px;
      padding: 13px 10px;
      border-radius: 8px;
      background-color: transparent;
      transition: 
        background-color 0.4s ease, 
        transform 0.5s ease,
        box-shadow 0.4s ease;
    }

    .contenedor-principal:hover .imagen {
      transform: scale(1.1);
    }

    .contenedor-principal:hover .overlay {
      background-color: rgba(0, 0, 0, 0.4);
    }

    .contenedor-principal:hover .contenedor-texto {
      transform: translateY(-30px);
      
    }

    .contenedor-principal:hover .texto {
      background-color: black;
      color: white;
      transform: translateY(-10px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }