/* Custom Styles for Futuristic Effects */

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.3);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Neon Shadow Effect */
.hover\:shadow-neon:hover {
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
}

/* Custom Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44ec4 50%, #ffcc02 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Glassmorphism Effects */
.glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b9d, #c44ec4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff8fb3, #d668d4);
}

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

/* Button Hover Effects */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Card Hover Effects */
.product-card, .preview-card, .bonus-card, .testimonial-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover, .preview-card:hover, .bonus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonial Message Bubble Effects */
.testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* WhatsApp/Instagram Message Styles */
.testimonial-card .bg-green-600\/20,
.testimonial-card .bg-pink-600\/20,
.testimonial-card .bg-blue-600\/20,
.testimonial-card .bg-yellow-600\/20,
.testimonial-card .bg-purple-600\/20,
.testimonial-card .bg-teal-600\/20 {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Message bubble tail effect */
.testimonial-card .bg-green-600\/20::after,
.testimonial-card .bg-pink-600\/20::after,
.testimonial-card .bg-blue-600\/20::after,
.testimonial-card .bg-yellow-600\/20::after,
.testimonial-card .bg-purple-600\/20::after,
.testimonial-card .bg-teal-600\/20::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255, 255, 255, 0.1);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Carrossel de Depoimentos */
.testimonials-carousel {
    animation: scroll 15s linear infinite;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .testimonials-carousel .testimonial-card {
        width: 280px;
    }
}

/* Responsive Text */
@media (max-width: 640px) {
    .text-responsive {
        font-size: 1.25rem;
    }
}

/* Countdown Timer Styles */
#countdown {
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Floating Animation for CTA */
@keyframes bounce-custom {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.animate-bounce {
    animation: bounce-custom 2s infinite;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus, a:focus {
    outline: 2px solid #ffcc02;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .fixed, .floating-cta {
        display: none !important;
    }
}
