/* Flujo TV - Custom Styles */

body {
    font-family: 'Inter', sans-serif;
    background-color: #131318;
    color: #e4e1e9;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #131318;
}

::-webkit-scrollbar-thumb {
    background: #9333ea;
    border-radius: 5px;
}

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

/* FAQ Animation */
.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    display: block !important;
}

/* Hover effects for cards */
.group:hover {
    transform: translateY(-4px);
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Pulsing glow effect for hero image */
@keyframes pulse-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

/* Button hover effects */
button {
    transition: all 0.3s ease;
}

button:active {
    transform: scale(0.95);
}

/* Link hover effects */
a {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-8xl {
        font-size: 3.5rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
}

/* Loading animation for images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom focus styles for accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid #9333ea;
    outline-offset: 2px;
}

/* Pricing card scale effect */
.scale-105 {
    transition: transform 0.3s ease;
}

.scale-105:hover {
    transform: scale(1.08);
}

/* WhatsApp button pulse effect */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.bg-\[\#25D366\] {
    animation: whatsapp-pulse 2s infinite;
}
