@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #05050f;
    color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.outfit {
    font-family: 'Outfit', sans-serif;
}

/* Background Animation */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, #0B0E27 0%, #03040C 100%);
}

/* Glow Button */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    color: white;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.6), 0 0 10px rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow-purple {
    background: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.btn-glow-purple:hover {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6), 0 0 10px rgba(0, 198, 255, 0.4);
}

/* Cards & Glassmorphism */
.glass-card {
    background: rgba(15, 20, 45, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 198, 255, 0.15);
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #00C6FF, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-2 {
    background: linear-gradient(135deg, #FF007F, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Card Special */
.pricing-card.popular {
    position: relative;
    border: 1px solid rgba(0, 198, 255, 0.5);
    background: linear-gradient(180deg, rgba(0, 198, 255, 0.05) 0%, rgba(15, 20, 45, 0.8) 100%);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
}

.pricing-card.popular::before {
    content: 'MÁS ELEGIDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Utility classes */
.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.blur-cyan {
    background: rgba(0, 198, 255, 0.3);
}

.blur-purple {
    background: rgba(138, 43, 226, 0.3);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 198, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}