/* HERO SOBRE */
.sobre-hero {
    position: relative;
    min-height: 430px;
    background-image: url("../assets/img/sobre-obra.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.sobre-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 54, 66, 0.84);
    z-index: 1;
}

.sobre-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
}

.sobre-hero-content span {
    display: block;
    color: var(--bege);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.sobre-hero-content h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
}

.sobre-hero-content p {
    color: var(--bege-claro);
    font-size: 17px;
}

/* CONTEÚDO */
.sobre-content-section {
    background: #ffffff;
    padding: 95px 0;
}

.sobre-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
}

.sobre-text h2 {
    color: var(--azul);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 28px;
}

.sobre-text p {
    color: #8a939d;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.sobre-text strong {
    color: var(--azul);
}

/* CARD LATERAL */
.sobre-card {
    background: var(--azul);
    padding: 42px;
    border-radius: 4px;
    box-shadow: 0 18px 35px rgba(36, 54, 66, 0.14);
}

.sobre-card-item {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(201, 195, 181, 0.25);
}

.sobre-card-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sobre-card-item strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.sobre-card-item span {
    color: var(--bege);
    font-size: 15px;
}

/* RESPONSIVO */
@media (max-width: 850px) {
    .sobre-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .sobre-content-section {
        padding: 70px 0;
    }

    .sobre-card {
        padding: 30px;
    }
}