/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 04 2025 | 01:44:50 */
.categorias-personalizadas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.categoria-box {
    display: block;
    width: 180px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.categoria-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.categoria-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.categoria-box:hover .categoria-image {
    transform: scale(1.1);
}

.categoria-title {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
}

