body {
    background-color: #08080D;
    color: #F5F3FF;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: #A878D6;
    box-shadow: 0 10px 40px 0 #A878D6;
    transform: translateY(-5px);
}

.glass-nav {
    background: rgba(8, 8, 13, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-input {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #F5F3FF;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: #A878D6;
    box-shadow: 0 0 15px rgba(168, 120, 214, 0.2);
    background: rgba(168, 120, 214, 0.05);
}

.btn-primary {
    position: relative;
    background: rgba(140, 32, 190, 0.1);
    border: 1px solid #707070;
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #A878D6, transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px #A878D6;
    border-color: #A878D6;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #F5F3FF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #A878D6;
    color: #C4A4FF;
    box-shadow: 0 0 20px rgba(168, 120, 214, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal2 {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px #C4A4FF;
    border-radius: 20px;
}
.text-gradient {
    background: linear-gradient(135deg, #C4A4FF 0%, #A878D6 45%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-gold {
    background: linear-gradient(135deg, #A878D6 0%, #8B5CF6 40%, #7C3AED 70%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

.carousel-slide {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(10px);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateY(0);
}

#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.7;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #08080D;
}

::-webkit-scrollbar-thumb {
    background: #2a2a35;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A878D6;
}

.icos {
    color: #A878D6;
    padding: 10px;
}

/* Menú móvil */
@media (max-width: 767px) {
    .mobile-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 8, 13, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 1.5rem 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 40;
    }

    .mobile-menu.open {
        display: flex;
    }
}