/* ==========================================================================
   Indicador de Scroll (Mouse Icon)
   ========================================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 6px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -webkit-animation: bounce 2s ease-in-out infinite;
    animation: bounce 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    -webkit-animation: scrollWheel 1.5s ease-in-out infinite;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@-webkit-keyframes bounce {
    0%, 100% { -webkit-transform: translateY(0); opacity: 0.8; }
    50% { -webkit-transform: translateY(-15px); opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-15px); opacity: 1; }
}

@-webkit-keyframes scrollWheel {
    0% { opacity: 1; -webkit-transform: translateY(0); }
    50% { opacity: 0.3; }
    100% { opacity: 1; -webkit-transform: translateY(6px); }
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; }
    100% { opacity: 1; transform: translateY(6px); }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 45px;
    }

    .mouse-icon {
        width: 20px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 35px;
    }

    .mouse-icon {
        width: 18px;
        height: 28px;
    }
}
