/* Galería Carrusel*/
.portafolio {
  position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(to left, rgba(78, 55, 197, 0.7), rgba(50, 30, 150, 0.7)), url(../img/Fondo_1.jpg);
    background-size: cover;
    background-attachment: fixed;
}

* {
    padding: 0; 
    margin: 0;
    box-sizing: border-box;
  }
  
  .slider-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  
  .slider-img {
    overflow: hidden;
    width: 20%;
    height: 250px; 
    transition: width 0.5s ease, transform 0.3s ease;
    border-radius: 10px;
  }
  
  .slider-img:hover {
    width: 35%;
    transform: scale(1.05); 
    border-radius: 20px;
  }
  
  .slider-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
  }
  
  .titulo_P{
    color: #ffffff;
    font-size: 30px;
    text-align: center; 
    margin-bottom: 60px;

  }