.zona-patagonia-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 0 5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;     /* Mantiene proporción 16:9 */
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.instrucciones-wrapper {
  display: flex;
  flex-wrap: wrap; /* Evita desbordes */
  gap: 5rem;
  width: 100%;
  justify-content: center; /* Opcional: centra las imágenes */
}

.instrucciones-wrapper img {
  flex: 1 1 100px;  /* cada imagen puede crecer y ocupar al menos 300px */
  /* aspect-ratio: 9 / 16; */
  /* object-fit: cover; */
  max-width: 100%;
  border-radius: 0.5rem; /* opcional, estética */
}

/* Imagen */
.video-wrapper .imagen-16-9 {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Evita deformaciones */
  transition: transform 0.4s ease;
}

.video-wrapper:hover .imagen-16-9 {
  transform: scale(1.05);   /* Efecto zoom suave */
}

/* Ícono de YouTube centrado */
.wrapper-icon-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4); /* fondo suave semitransparente */
  border-radius: 50%;
  padding: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.wrapper-icon-youtube svg {
  width: 50px;
  height: 50px;
  fill: white;
}

/* Hover del ícono */
.video-wrapper:hover .wrapper-icon-youtube {
  background-color: rgba(255, 0, 0, 0.8); /* rojo estilo YouTube */
  transform: translate(-50%, -50%) scale(1.1);
}
.QR-wrapper {
    display: flex;
    justify-content: center;
    margin: 4rem 0; 
}

@media (max-width: 768px) {
  .QR-wrapper {
    display: none;
  }
}

.links-wrapper {
    width: 100%;   
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}