/* ==========================================================================
   Sobre Hero — Seção hero da página Sobre
   ========================================================================== */

.sobre-hero {
    position: relative;
    z-index: 2;
    height: var(--hero-height);
    display: flex;
    align-items: center;
    background-image: url('../images/sobre-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-bottom: 1px solid var(--color-bg-light);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - var(--hero-clip-v)),
        calc(100% - var(--hero-clip-h)) 100%,
        0 100%
    );
}

.sobre-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.sobre-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--gap-content);
}

/* Breadcrumb */
.sobre-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.42vw, 8px);
    font-family: var(--font-text);
    font-size: var(--fs-body-sm);
    color: var(--color-white);
}

.sobre-hero__breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sobre-hero__breadcrumb a:hover {
    color: var(--color-primary);
}

.sobre-hero__breadcrumb span[aria-current="page"] {
    color: var(--color-primary);
}

/* Title */
.sobre-hero__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--fs-hero-title);
    line-height: 1.1;
    color: var(--color-white);
    max-width: 760px;
}

/* Description */
.sobre-hero__description {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--color-text-hero);
    max-width: 760px;
}

/* ===== Responsivo ===== */

@media (max-width: 768px) {
    .sobre-hero {
        height: auto;
        min-height: 90vh;
    }

    .sobre-hero__content {
        padding-bottom: 48px;
    }

    .sobre-hero__br {
        display: none;
    }
}
