﻿.category-card {
    background-color: red;
    border-radius: 50%;
    border: 2px;
    border-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    transition: background-color 0.3s, transform 0.3s;
    margin: auto;
}

    .category-card img {
        max-width: 130%;
        max-height: 230%;
        transition: transform 0.4s;
    }

    .category-card:hover {
        background-color: white;
        transform: scale(1.1);
       
        
    }

        .category-card:hover img {
            transform: scale(1.2);
        }

.category-title {
   
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
    white-space: normal; /* Permite el salto de línea */
    word-wrap: break-word; /* Rompe palabras largas si es necesario */
    overflow-wrap: break-word;
    max-width: 100%; /* Se adapta al ancho del contenedor */
}

@media (max-width: 768px) {
    .category-card {
        width: 120px;
        height: 120px;
    }

        .category-card img {
            max-width: 150%;
            max-height: 230%;
        }
}

@media (max-width: 576px) {
    .category-card {
        width: 100px;
        height: 100px;
    }

        .category-card img {
            max-width: 130%;
            max-height: 170;
        }
}
