/* 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-products.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;
    }
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto; 
    font-weight: 500;
}

.filter-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.filter-btn {
    background: #e9ecef;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    color: var(--industrial-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--industrial-blue);
    color: #fff;
}

/* Cards de Produtos */
.product-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    display: none;
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--industrial-blue);
    margin-bottom: 10px;
}

/* CTA Industrial Box */
.cta-industrial-box {
    /* Gradiente mais vivo e azulado como na imagem */
    background: linear-gradient(90deg, rgba(21, 87, 153, 0.92) 0%, rgba(21, 87, 153, 0.8) 100%),
        url('../images/backgrounds/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.cta-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    max-width: 550px;
    opacity: 0.9;
}

/* Botão Estilo Pill (igual à imagem) */
.btn-white-pill {
    display: inline-block;
    background: #ffffff;
    color: #155799;
    /* Azul do tema */
    padding: 14px 35px;
    border-radius: 12px;
    /* Arredondado suave como na imagem */
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* Card de Vidro (Certificações) */
.cert-glass-card {
    background: rgba(255, 255, 255, 0.2);
    /* Fundo branco semi-transparente */
    backdrop-filter: blur(10px);
    /* Efeito de desfoque atrás do vidro */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 280px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cert-item:last-child {
    margin-bottom: 0;
}

.cert-item i {
    font-size: 28px;
    color: #ffffff;
    /* Ícones brancos como na imagem */
    opacity: 0.9;
}

.cert-item span {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Responsividade */
@media (max-width: 991px) {
    .cta-industrial-box {
        padding: 50px 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        margin: 0 auto 20px;
    }

    .cert-glass-card {
        min-width: 100%;
        padding: 20px;
    }
}

.text-industrial-support {
    color: var(--industrial-blue);
    font-size: 14px;
    text-align: center; 
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6; 
    font-weight: 400;
    opacity: 0.85;
}