/* Custom Styles Redgás */
:root {
    --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

body { font-size: var(--step-0); }

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scrolling */
html { scroll-behavior: smooth; }

/* Custom Selection */
::selection {
    background: #E11D48;
    color: white;
}