 

.big{
min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9)), url(https://www.tupresenciadigital.com/oscar-2026/imagen/fondo-oscar2026.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Toast animations */
@keyframes toastIn {
  from { transform: translate(-50%, -8px); opacity: 0; }
  to   { transform: translate(-50%, 0px); opacity: 1; }
}
@keyframes toastOut {
  from { transform: translate(-50%, 0px); opacity: 1; }
  to   { transform: translate(-50%, -8px); opacity: 0; }
}
.animate-toast-in { animation: toastIn .18s ease-out forwards; }
.animate-toast-out { animation: toastOut .18s ease-in forwards; }

html { scroll-behavior: smooth; }


.lead {
  width: 80%; /* móvil */
}

@media (min-width: 768px) {
  .lead {
    width: 44%; /* PC */
  }
}
