/* Royal Cell - Estilos Personalizados */

/* Fonte padrão */
* {
    font-family: 'Poppins', sans-serif;
}

/* Cores da marca */
.bg-royal-yellow {
    background-color: #FFC107;
}

.text-royal-yellow {
    color: #FFC107;
}

.border-royal-yellow {
    border-color: #FFC107;
}

/* Animações e transições */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Seções */
.hero-section {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

/* Cards de produtos */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
}

/* Logo/Ícone da coroa */
.crown-icon {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
