/* =========================================
   CONSTRUMONT - Página Sobre
   ========================================= */

/* --- HERO COMPACTO (herdado de contato.css) --- */
.page-hero {
    margin-top: var(--header-height);
    background-color: var(--blue-primary);
    color: var(--white);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #000 10px, #000 20px);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    color: var(--safety-orange);
    font-weight: 600;
}

/* --- LABEL TAG --- */
.label-tag {
    color: var(--blue-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

/* --- INTRO GRID --- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--blue-primary);
    z-index: 1;
}

/* --- STATS INLINE --- */
.about-stats-inline {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--concrete-light);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-inline strong {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--blue-primary);
    line-height: 1;
}

.stat-inline span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--steel-gray);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image img {
        height: 350px;
    }

    .image-accent {
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-stats-inline {
        flex-direction: column;
        gap: 16px;
    }

    .about-intro-image img {
        height: 280px;
    }

    .image-accent {
        display: none;
    }
}