
        .container2 {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        

        .category-card {
            position: relative;
            width: 200px;
            height: 250px;
            background-color: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .category-card:hover {
            transform: scale(1.05);
        }

        .category-card .icon {
            font-size: 50px;
            color: #007bff;
            margin-bottom: 10px;
        }

        .category-card .header {
            width: 100%;
            background-color: #ff4d4d;
            color: #ffffff;
            padding: 10px 0;
            font-size: 18px;
            font-weight: bold;
        }

        .category-card .blue-section {
            width: 100%;
            background-color: #007bff;
            color: #ffffff;
            padding: 10px 0;
            font-size: 18px;
            font-weight: bold;
            position: relative;
        }

        .category-card .celeste-section {
            width: 100%;
            background-color: #e0f7fa;
            color: #007bff;
            padding: 10px 0;
            font-size: 16px;
        }

        .category-card .description {
            display: none;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .modal-content h2 {
            margin-top: 0;
        }

        .modal-content p {
            margin: 0;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
        }
