/* ─────────────────────────────────────────
   VIPAX · Base & Reset
   Reset, html, body, grain overlay global
───────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Lora', Georgia, serif;
    overflow-x: hidden;
    cursor: none;
}

/* Grain de película — textura de material natural sobre toda a página */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    opacity: 0.038;
    pointer-events: none;
    z-index: 9000;
    mix-blend-mode: screen;
}

/* Divisor SVG orgânico entre seções */
.wave-divider {
    display: block;
    width: 100%;
    margin-bottom: -2px;
}
