
/* Estilos para o grid de categorias e modais */

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.category-item {
    background-color: #007BFF;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    width: 200px;
    transition: transform 0.3s ease;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    text-align: left;
}

.modal-content h2 {
    margin-top: 0;
    color: #333;
}

.modal-content ul {
    padding-left: 20px;
}

.close-btn {
    float: right;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}
