/* Seccion Separador - Con position:fixed real y brillo original */
#separadorSection {
  position: relative;
  min-height: 50vh; 
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  /* Crea la ventana de recorte para congelar el fondo dentro de la sección */
  clip-path: inset(0 0 0 0); 
}

/* Capa virtual para el POSITION FIXED real */
#separadorSection::before {
  content: "";
  position: fixed; /* Mantiene el fondo congelado al hacer scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  
  /* Imagen original limpia (sin capas oscuras ni degradados) */
  background: url(../img/brindis.png) no-repeat center center;
  background-size: cover;
  
  z-index: -1; /* Se posiciona detrás del contenido */
}

#separadorSection .texto-separador {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

#separadorSection .texto-separador h2 {
  color:#ffffff; 
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Sombra para que destaque sobre la foto original */
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

#separadorSection .texto-separador p {
  color:#ffffff; 
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8); /* Sombra suave para que el texto blanco sea legible */
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  margin-bottom: 2rem;
}

#separadorSection .botones-evento {
  display: inline-block;
  padding: 12px 30px;
  background-color: #70683c;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/* --- AJUSTES ESPECÍFICOS PARA MÓVILES (Manteniendo el efecto fijo) --- */
@media (max-width: 768px) {
  #separadorSection {
    /* Mantiene los tamaños reducidos que te gustan */
    min-height: 35vh; 
    padding: 3rem 1.5rem;
  }

  /* Ajustes de tamaño de texto para pantallas pequeñas */
  #separadorSection .texto-separador h2 {
    font-size: 2.5rem; 
    color: #ffffff !important; /* Fuerza el dorado también en móviles */
  }

  #separadorSection .texto-separador p {
    font-size: 2.2rem;
  }
}
