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

/* Estrutura dos Blocos Técnicos */
.tech-block {
    position: relative;
}

.tech-row {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.tech-block.reverse .tech-row {
    flex-direction: row-reverse;
}

.tech-text {
    width: 50%;
}

.tech-image {
    width: 45%;
}

.tech-image img {
    width: 100%;
    border-radius: 30px;
}

/* O Fundo Azul Arredondado para seções REVERSE */
.tech-row-bg-blue {
    background-color: var(--industrial-blue);
    border-radius: 40px;
    padding: 60px;
    position: relative;
    margin-left: -50px;
    /* Expande um pouco para o lado conforme PDF */
    width: calc(100% + 50px);
}

.tech-block.reverse .tech-row-bg-blue {
    margin-left: 0;
    margin-right: -50px;
}

.btn-tag-light {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Globais de texto para fundo azul */
.title-white {
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 20px;
}

.title-blue {
    color: var(--industrial-blue) !important;
    font-weight: 800;
    margin-bottom: 20px;
}

.text-white {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Checklist Padrão (Fundo Branco) */
.check-list-industrial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.check-item {
    font-weight: 600;
    color: var(--industrial-blue);
}

.check-item i {
    color: #00bcd4;
    margin-right: 8px;
}

/* Tags Cinzas (Fundo Branco) */
.btn-gray-tag {
    background: #e9ecef;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    color: var(--industrial-blue);
    margin-right: 10px;
}

@media (max-width: 991px) {
    .tech-row {
        flex-direction: column !important;
        gap: 30px;
    }

    .tech-text,
    .tech-image {
        width: 100%;
    }

    .tech-row-bg-blue {
        margin: 0;
        width: 100%;
        padding: 30px;
    }
}

/* Check-list Estamparia */
.check-list-industrial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.check-item {
    font-weight: 600;
    color: var(--industrial-blue);
    font-size: 14px;
}

.check-item i {
    margin-right: 8px;
    color: #00bcd4;
}

/* Boxes de Soldagem (Azul com stats) */
.stats-row-blue {
    display: flex;
    gap: 20px;
}

.stat-blue-box {
    background: var(--industrial-blue);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
}

.stat-blue-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-blue-box span {
    font-size: 11px;
    font-weight: bold;
    opacity: 0.8;
}

/* Tags de Tubos */
.btn-gray-tag {
    background: #e9ecef;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    margin-right: 10px;
    color: var(--industrial-blue);
}

.mb-100 {
    margin-bottom: 100px;
}

.rounded-30 {
    border-radius: 30px;
}

.tech-slider {
    width: 100%;
    height: 400px; /* Altura fixa para manter o alinhamento do grid */
    background: #eee;
}

.tech-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
}

/* Customização das cores do Swiper para o Azul Ciclope */
.tech-slider {
    --swiper-navigation-color: #ffffff;
    --swiper-pagination-color: #ffffff;
}

.swiper-button-next, .swiper-button-prev {
    background: rgba(0, 48, 87, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    after { font-size: 18px !important; }
}

/* SEÇÃO FROTA */
.section-frota {
    background-color: #f2f4f7;
}

.section-frota p {
    text-align: justify;
}

/* Wrapper dos Contadores na Frota */
.counter-wrapper {
    display: flex;
    align-items: baseline;
}

.counter-wrapper h3 {
    margin-bottom: 0;
    font-size: 45px;
    font-weight: 800;
}

/* Transição suave para a imagem da frota */
.fleet-image-container {
    padding: 30px;
}

.fleet-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    transition: all 1s ease-out;
}