        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .clientes-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .clientes-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #222;
        }

        .clientes-section p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #555;
        }

        .divider {
            width: 100px;
            height: 3px;
            background-color: #0066cc;
            margin: 0 auto 40px;
        }

        .clientes-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .cliente-group {
            flex: 1;
            min-width: 300px;
            max-width: 800px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .cliente-group h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #0066cc;
            text-transform: uppercase;
        }

        .clientes-logos {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5 logos por linha */
            gap: 20px; /* ou o espaçamento desejado */
        }

        .cliente-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px;
        }

        .cliente-logo img {
            max-width: 100%;
            max-height: 100%;
            transition: filter 0.3s ease;
        }

        .cliente-logo img:hover {
           transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .clientes-grid {
                flex-direction: column;
                align-items: center;
            }

            .cliente-group {
                width: 100%;
            }

            .clientes-logos {
                grid-template-columns: 1fr;
            }
        }
