body {
    background-color: #e1f5fe;
    color: #0a0f1a;
    scroll-behavior: smooth;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
}

.animate-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-glow {
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
}

.gpu-card {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

#catalog-content {
    contain: paint;
    min-height: 100vh;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-bottom-color: #fbbf24;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Badge do carrinho */
#cart-badge {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cart-badge.bump {
    transform: scale(1.5);
}

/* Cores predefinidas */
.text-cor-amarelo {
    color: #FFC107;
}

.text-cor-azul {
    color: #0307cc;
}

.text-cor-verde {
    color: #008b00;
}

.bg-cor-azul-escuro {
    background-color: #0307cc;
}

.hover:bg-cor-azul-escuro {
    background-color: #0307cc;
}

.bg-cor-amarelo {
    background-color: #FFC107;
}

.botao-top-bar {
    background-color: #FFFFFF;
    color: #0a0f1a;
    border: 1px solid #0a0f1a;
}

.botao-filtro {
    background-color: #ffffff;
    color: #0a0f1a;
    border: 1px solid #0a0f1a;
}