:root {
    --color-primary: 78 95 126;
    /* Default RGB para #4e5f7e */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: max(884px, 100dvh);
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--color-primary), 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--color-primary), 0.5);
}

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

/* Custom Font: Crazy Loop in Paris */
.font-crazy-loop {
    font-family: 'Crazy Loop in Paris', sans-serif !important;
}

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

.dark .glass-effect {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper Custom Styles */
.promotions-swiper {
    --swiper-theme-color: rgb(var(--color-primary));
    --swiper-navigation-size: 24px;
}

.promotions-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.promotions-swiper .swiper-pagination-bullet-active {
    background: white;
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.promotions-swiper .swiper-slide {
    transition: transform 0.8s ease-in-out;
}

.promotions-swiper .swiper-slide-active h2 {
    animation: slideUp 0.8s ease forwards;
}

.promotions-swiper .swiper-slide-active p {
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.promotions-swiper .swiper-slide-active a {
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(var(--color-primary), 0.2);
}