/* Estilo básico para la galería */
figure {
    margin: 20px 0 0 0;
  }
  #gallery {
      max-width: 100%;
      margin: auto;
      overflow: hidden;
      position: relative;
  }
  
  .gallery-container {
      display: flex;
      transition: transform 0.5s ease-in-out;
  }
  
  .gallery-item {
      min-width: 100%;
      box-sizing: border-box;
  }
  
  .gallery-item img {
      width: 100%;
      display: block;
  }
  
  /* Navegación de la galería */
  .gallery-navigation {
      display: flex;
      justify-content: space-between;
      width: calc(100% - 40px);
      margin: 0 20px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%)
  }
  
  .nav-button {
      background-color: rgba(0,0,0, .3);
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
  }
  .nav-button > span {
    font-size: 30px;
  }
  .nav-button:hover {
      background-color: #88152F;
      opacity: 0.6;
  }
  /*__FIN SLIDER DE IMAGENES__*/