/*assets/css/custom.css*/
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    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");
}

/* Navbar Scrolled State */
.nav-active {
    background: rgba(242, 240, 233, 0.85) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 64, 54, 0.1) !important;
    padding: 1rem 2rem !important;
    color: #2E4036 !important;
    top: 1.5rem !important;
}

/* Suavizar scroll */
html {
    scroll-behavior: smooth;
}

/* Estilo de las tarjetas apiladas */
.stack-card {
    border-top: 1px solid rgba(0,0,0,0.05);
}