  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #f2f2f2;
          
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container-2 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 100px;
            flex-wrap: wrap;
            max-width: 1250px;
            width: 100%;
        }

        .painel {
            width: 100%;
            max-width: 350px;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.01);
            background: #fff;
            transition: transform 0.3s ease;
        }

        .painel:hover {
            transform: scale(1.05);
        }

        .painel img {
            width: 100%;
            height: 120px;
            object-fit: cover;
        }

        .descricao {
            padding: 15px;
            background: #fff;
            font-size: 16px;
            color: #333;
        }

        /* Responsividade */
        @media (max-width: 650px) {
            .container-2 {
                flex-direction: column;
                align-items: center;
            }
        }