/* Reutilizando e garantindo o Banner Faded */
.clients-hero-faded {
    height: 614px;
    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-contact.webp');

    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;
    }
}

/* QUADRADO AZUL ATRÁS DO FORMULÁRIO */
.form-bg-shape-blue {
    position: absolute;
    top: -25px;
    /* Começa um pouco acima do formulário */
    right: -25px;
    /* Deslocado para a direita */
    width: 80%;
    /* Ocupa a maior parte da largura */
    height: 65%;
    /* Desce aproximadamente até o campo 'Empresa' */
    background-color: var(--industrial-blue);
    border-radius: 30px;
    z-index: 1;
}

/* Wrapper do Formulário para ficar na frente */
.contact-form-wrapper {
    position: relative;
    z-index: 2;
    /* Garante que o form fique sobre o quadrado azul */
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Estilos de input e botão mantidos do anterior... */
.form-control-industrial {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.btn-send-industrial {
    background: var(--industrial-blue);
    border-radius: 10px;
}

/* Itens de Informação (Esquerda) */
.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box-blue {
    width: 50px;
    height: 50px;
    background-color: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--industrial-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--industrial-blue);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Formulário (Direita) */
.contact-form-wrapper {
    background: #ffffff;
    border: 2px solid #e9ecef;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-instruction {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-control-industrial {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control-industrial:focus {
    outline: none;
    border-color: var(--industrial-blue);
    background: #fff;
}

label {
    font-weight: 700;
    font-size: 13px;
    color: var(--industrial-blue);
    margin-bottom: 8px;
    display: block;
}

.btn-send-industrial {
    width: 100%;
    background: var(--industrial-blue);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-send-industrial:hover {
    background: #155799;
    transform: translateY(-2px);
}

.title-blue {
    font-weight: 800;
    margin-top: 10px;
    color: var(--industrial-blue);
}

.title {
    font-weight: 800;
    margin-top: 10px;
}

.careers-full-width {
    width: 100%;
}

.careers-cta__card {
    position: relative;
    padding: 80px 20px;
    width: 100%;
    background: linear-gradient(rgba(120, 120, 120, 0.4), rgba(120, 120, 120, 0.4)),
        url('../images/backgrounds/work-us.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Títulos e Textos */
.careers-cta__title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.careers-cta__description {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-full-width {
    width: 100%;
}

.contact-cta__card {
    position: relative;
    padding: 80px 20px;
    width: 100%;
    background: linear-gradient(rgba(120, 120, 120, 0.4), rgba(120, 120, 120, 0.4)),
        url('../images/backgrounds/contact.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Títulos e Textos */
.contact-cta__title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-cta__description {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-industrial-transparent {
    display: inline-block;
    padding: 16px 45px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-industrial-transparent:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Classe para esconder com suavidade */
.d-none-fade {
    display: none !important;
    opacity: 0;
}

/* Classe para animar a entrada */
.fade-in-entry {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}