section#talleres {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 40px 20px;
}


.taller-superior {
    width: 100%;
    gap: 30px;
}

.taller-titulo {
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.taller-institucion {
    font-size: clamp(1.2rem, 3vw, 3rem);;
    font-weight: bold;    
    line-height: 1.1;
    text-align: center;
}

.taller-personas {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #ffde59;
    margin-top: 40px;
    text-align: center;
    min-height: 200px;
}


.taller-nombre {
    margin-top: 15vh;
    text-align: right;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    padding: 15px;
    background-color: rgba(255,255,255,0.1);
    border-left: 5px solid #FFD700;
}

.taller-slideShow {
  display: flex;
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem; /* Espacio entre expositores */
  padding-bottom: 1rem;
  /* Opcional: oculta la barra de scroll visualmente */
  overscroll-behavior-x: contain;
   scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;
}
.taller-slideShow::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.taller-carrusel {
  flex: 0 0 60vw; /* Cada expositor ocupa el 80% del ancho de la ventana */
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-right: 10vw;
  margin-top: 5vw;
}

.taller-prev, .taller-next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
  background-color: #FFD70050;
}
.taller-next {
  right: 4vw;
}

.taller-prev {
  left: 4vw;
}

.taller-prev:hover, .taller-next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 900px) {
    .taller-slideShow {
        margin-left: 10vw;
    }

    .taller-superior {
    flex-direction: column;
    align-items: center;
    text-align: center;
    }

    .taller-personas{
        min-height: none;
    }

    .taller-titulo {
    border-left: none;
    border-top: 5px solid #FFD700;
    }
    .taller-nombre {
    flex: 0 0 10%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5vh;
    }
   
    .taller-carrusel {
    flex: 0 0 80vw;
    min-width: 220px;
    }
    .taller-prev, .taller-next {
  top: 48%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  font-size: 10px;
}
}


@media (min-width: 900px) {
    section#talleres {
    display: block; 
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
  }
  .taller-slideShow {
    width: 100vw;
    max-width: 100vw;    
    overflow-x: auto;
    padding-left: 50vw; /* 400px es la mitad de max-width de .expositorcarrusel */ 
  }
  .spacer-final {
    flex: 0 0 60vw; /* 60vw es el ancho de .expositorcarrusel */
    min-width: 0;
    height: 1px;
  }
  .talleres-header {
    display:none;
  } 
}