.galeria_title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
    color: #333;
  }
  
  .contenedor-galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    width: 85%;
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 300px;
  }
  
  .galeria {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 30px;
  }
  
  .contenedor-imagen {
    width: 300px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contenedor-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 220px;
    object-fit: cover;
  }
  
  @keyframes scroll {
    0% {
        transform: translateX(0);
    }
  
    100% {
        transform: translateX(-50%);
    }
  }
  
  .partners_title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
  }