/* ============================================================
   SOBRE NÓS - GERTECH
   ============================================================ */

.about-hero {
    /* Atualizado para o azul da marca com um degradê mais suave */
    background: linear-gradient(
        rgba(0, 97, 168, 0.85), 
        rgba(0, 194, 238, 0.7)
    ), url('../img/banner-about.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0; /* Garante uma boa altura para o banner */
    color: var(--white);
}

.title-underline {
    width: 60px;
    height: 4px;
    /* Usando o ciano para destacar sobre o fundo branco */
    background-color: var(--gertech-blue-light); 
    margin-top: 15px;
    border-radius: 10px;
}

.icon-box i {
    /* Ícones agora brilham no azul claro da marca */
    color: var(--gertech-blue-light);
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.map-responsive {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 97, 168, 0.1);
    filter: grayscale(1) opacity(0.7); /* Mais discreto no início */
    transition: all 0.5s ease;
}

.map-responsive:hover {
    filter: grayscale(0) opacity(1);
    box-shadow: 0 15px 35px rgba(0, 97, 168, 0.15);
}

/* Ajustes para o texto corrido */
#historia p, #quem-somos p {
    text-align: justify;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Destaque para palavras ou frases importantes */
.text-highlight {
    color: var(--gertech-blue);
    font-weight: 600;
}