/* MiMenú Pro - Premium Landing Page Styles */

:root {
    --primary: #142588;
    --primary-light: #303f9f;
    --accent: #E2FF00;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    background: #fbf8ff;
    color: #1b1b21;
    overflow-x: hidden;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(20, 37, 136, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(20, 37, 136, 0.3);
    filter: brightness(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Grid Pattern for Hero */
.bg-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(20, 37, 136, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20, 37, 136, 0.03) 1px, transparent 1px);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 4s ease-in-out infinite;
}

/* Skins Carousel Custom Style */
.skin-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.skin-card:hover {
    transform: scale(1.05) rotate(1deg);
    z-index: 10;
}
