/* Custom Styles */
:root {
    --primary-purple: #8B5CF6;
    --secondary-purple: #A78BFA;
    --light-purple: #EDE9FE;
    --dark-purple: #7C3AED;
    --background-purple: #F5F3FF;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --accent-pink: #EC4899;
    --whatsapp-green: #25D366;
}

/* Global Styles */
body {
    background-color: var(--background-purple);
    color: var(--text-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Container */
.container {
    max-width: 1280px;
}

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

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 50%, 
        rgba(167, 139, 250, 0.1) 100%
    );
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(236, 72, 153, 0.08) 50%,
        rgba(167, 139, 250, 0.1) 100%
    );
    padding-top: 3rem;
    padding-bottom: 2rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-primary svg {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: scale(1.2) rotate(5deg);
    color: rgba(255, 255, 255, 0.9);
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.05);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(139, 92, 246, 0.1);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(237, 233, 254, 0.95) 100%
    );
}

/* Feature Icons */
.feature-icon {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 100%
    );
    color: var(--primary-purple);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(236, 72, 153, 0.2) 100%
    );
    transform: scale(1.05);
}

/* Form Styles */
.form-input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: right 0.3s ease-in-out;
    }

    .mobile-menu.active {
        right: 0;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-purple);
}

/* Loading Animation */
.loading {
    position: relative;
    width: 40px;
    height: 40px;
}

.loading::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Focus States */
*:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
}

/* Navigation Links */
.nav-link:hover {
    color: var(--primary-purple);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(236, 72, 153, 0.1) 100%
    );
}

/* Section Backgrounds */
.section-gradient {
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(236, 72, 153, 0.05) 50%,
        rgba(167, 139, 250, 0.05) 100%
    );
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Trust Badge */
.trust-badge {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(237, 233, 254, 0.95) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(139, 92, 246, 0.1);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(237, 233, 254, 0.98) 100%
    );
}

/* Particles Background */
#particles-js {
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(236, 72, 153, 0.05) 50%,
        rgba(167, 139, 250, 0.05) 100%
    );
}

/* Video Section Styles */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(139, 92, 246, 0.1), 0 10px 10px -5px rgba(139, 92, 246, 0.04);
}

.aspect-w-16 > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-button {
    box-shadow: 0 0 0 8px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

.play-button:hover {
    box-shadow: 0 0 0 12px rgba(139, 92, 246, 0.2);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transform: translateZ(0);
}

.video-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(167, 139, 250, 0.1) 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Video Features Section */
.video-feature {
    transition: all 0.3s ease;
}

.video-feature:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(236, 72, 153, 0.2) 100%
    );
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 600px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    border-radius: 1rem;
    padding: 1rem;
    z-index: 1000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    display: grid;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-link {
    position: relative;
    color: var(--text);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    z-index: 2;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-gray-50 {
    background-color: #F9FAFB;
} 