/* BANNER COM FADE PARA BRANCO (Igual à imagem) */
.clients-hero-faded {
    height: 614px;
    position: relative;
    padding: 180px 0 100px 0;
    /* Mais espaço no topo para o header flutuante */

    /* Gradiente que vai de uma película leve (topo) para Branco Sólido (base) */
    background: linear-gradient(to bottom,
            rgba(0, 99, 157, 0.95) 0%,
            rgba(0, 99, 157, 0.90) 35%,
            rgba(0, 99, 157, 0.75) 60%,
            rgba(255, 255, 255, 1) 100%),
        url('../images/backgrounds/bg-factory-clients.jpg');

    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 180px 0 80px 0;
    text-align: left;
}

/* TÍTULO AZUL (Tamanho ajustado e sem linha) */
.hero-title-industrial {
    font-size: 38px;
    /* Reduzido conforme solicitado */
    font-weight: 800;
    color: #ffffff;
    /* Azul padrão da imagem */
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    border: none;
    /* Garante que não tenha linha */
    text-decoration: none;
    /* Garante que não tenha sublinhado */
}

/* Remover qualquer linha residual que possa vir de estilos globais */
.hero-title-industrial::after,
.hero-title-industrial::before {
    display: none !important;
}

/* Responsividade */
@media (max-width: 991px) {
    .clients-hero-faded {
        padding: 140px 0 60px 0;
        text-align: left;
    }

    .hero-title-industrial {
        font-size: 28px;
        padding-left: 15px;
    }
}

/* Cards de Clientes */
.client-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--industrial-blue);
}

.client-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    /* Opcional: logos cinzas que ficam coloridos no hover */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--industrial-blue);
    margin-bottom: 15px;
}

.client-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .client-card {
        padding: 30px 20px;
    }

    .client-logo {
        height: 100px;
    }
}