/* MacuMusic Custom Styles */

body { 
    font-family: system-ui, -apple-system, sans-serif; 
}

/* Text Gradient Effect */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Wizard Chip Options */
.chip-option.selected {
    background-color: #9333ea !important; /* purple-600 */
    border-color: #a855f7 !important;
    color: white !important;
}

.chip-option:hover {
    transform: translateY(-2px);
}

/* Step Indicators */
.step-indicator.active {
    background-color: #9333ea;
    color: white;
    border-color: #9333ea;
}

.step-indicator.completed {
    background-color: #22c55e; /* green-500 */
    border-color: #22c55e;
    color: white;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

/* Form Input Focus States */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

/* Custom File Upload Styling */
#file-upload-area:hover {
    border-color: #9333ea;
    background-color: rgba(147, 51, 234, 0.05);
}

/* Error Message Styling */
.error-message {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

/* Success State */
.success-border {
    border-color: #22c55e !important;
}

/* Disabled Button State */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Menu Animation */
@media (max-width: 768px) {
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Typography */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Card Hover Effects */
.bg-slate-950:hover,
.bg-slate-900:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease-out;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animated-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Print Styles */
@media print {
    nav,
    footer,
    #referidos {
        display: none;
    }
}
