/* Efecto de Ruido Orgánico */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 9999;
    pointer-events: none;
}

/* Suavizado de tipografía editorial */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animación de entrada para el Hero */
.hero-content {
    animation: fadeInUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para los inputs del formulario (igual a Nexus File) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #1A1A1A;
    -webkit-box-shadow: 0 0 0px 1000px #F2F0E9 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Clases para el efecto Stacking (apilamiento) */
.stack-card {
    will-change: transform;
    transition: transform 0.1s ease-out;
}