/* DK Bebidas - Estilos personalizados */

/* Animações de scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de elevação ao hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 199, 44, 0.2);
}

/* Animação de gradiente brilhante */
.gradient-animate {
    background: linear-gradient(90deg, transparent, rgba(255, 199, 44, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Keyframes para animações customizadas */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

/* Classes de animação */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

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

.animate-shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

/* Carrossel de Marcas */
.marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    min-width: 200px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #18181B;
    text-shadow: 
        0 0 1px rgba(255, 199, 44, 0.5),
        0 0 3px rgba(255, 199, 44, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 50%, #3a3a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(1);
    transition: all 0.3s ease;
}

.marquee-item:hover .brand-logo-img {
    transform: scale(1.15);
}

.marquee-item:hover .brand-logo {
    color: #FFC72C;
    text-shadow: 
        0 0 10px rgba(255, 199, 44, 0.8),
        0 0 20px rgba(255, 199, 44, 0.6),
        0 0 30px rgba(255, 199, 44, 0.4);
    transform: scale(1.1);
    -webkit-text-fill-color: #FFC72C;
}

@media (max-width: 768px) {
    .marquee-item {
        padding: 0 2rem;
        min-width: 150px;
    }
    
    .brand-logo {
        font-size: 1.2rem;
    }
    
    .brand-logo-img {
        height: 40px;
        max-width: 120px;
    }
}
