          body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #003d82;
            --primary-light: #1e5a9b;
            --accent-orange: #ff8c42;
            --accent-orange-light: #ffb366;
            --dark: #0f1419;
            --light: #f8f9fa;
            --gray: #6b7280;
            --border: #e5e7eb;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            background: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Tipografía */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.2;
            color: var(--primary);
        }

        h2 {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.5rem;
            color: var(--primary);
        }

        p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.8;
        }

        /* ============================================
   SCROLL INDICATOR
   ============================================ */

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: relative;
    bottom: -100px;           /* Ajusta este valor según necesites */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    color: #f97316;
    animation: bounce 2s infinite ease-in-out;
    z-index: 10;
    cursor: pointer;
    -webkit-text-stroke: 2px rgba(249, 115, 22, 0.4);
    text-shadow: 0 4px 15px rgba(249, 115, 22, 0.6);
}

.scroll-indicator:hover {
    color: #fb923c;
    transform: translateX(-50%) scale(1.15);
}

/* Animación */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-18px);
    }
}
