.main .galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
  }
  
  .main .galeria .foto {
    flex: 1;
    margin: 0;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
  }
  
  .main .galeria .foto img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .carousel-control.left,
  .carousel-control.right {
    background-image: none;
    margin-top: 10%;
    width: 5%;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5) !important;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .overlay-title {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
  }
  
  .service-container:hover .overlay {
    opacity: 0;
    /* display: none; */
  }
  
  .carousel-control.left,
  .carousel-control.right {
    background-image: none;
    margin-top: 10%;
    width: 5%;
  }
  
  @media (max-width: 768px) {
    .main .galeria .foto {
      flex: 1 1 calc(50% - 10px);
    }
    .foto {
      margin-bottom: 30px !important; /* Ajusta el espacio entre las imágenes en pantallas medianas y grandes */
    }
    .overlay {
      position: absolute;
      top: 0;
      /* width: 87.3% !important; */
      width: 100% !important;
      height: 100% !important;
      background-color: rgba(0, 0, 0, 0.5);
      transition: opacity 0.3s ease-in-out;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .nombre {
      font-size: 15px !important;
    }
  }
  
  .galeria {
    padding: 20px;
  }
  
  .foto {
    position: relative;
    overflow: hidden;
  }
  .foto:hover .overlay {
    opacity: 0;
  }
  .overlay-content {
    text-align: center;
    color: #fff;
  }
  