/* ==========================================================================
   Sobre — Overrides específicos da página Sobre
   ========================================================================== */

.sobre-page .nav {
    gap: 64px;
}

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

.sobre-hero {
    position: relative;
    z-index: 2;                    /* Acima da cultura (z 1) p/ watermark vir através do recorte */
    height: 663px;
    display: flex;
    align-items: flex-start;
    padding-top: 180px;
    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% - 97px),
        calc(100% - 120px) 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: 16px;
}

/* Breadcrumb */
.sobre-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 14px;
    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: 40px;
    line-height: 1.1;
    color: var(--color-white);
}

/* Description */
.sobre-hero__description {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: var(--color-text-hero);
    max-width: 100%;
}

/* Scroll button (replicado de hero.css) */
.sobre-hero .hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--scroll-btn-bg);
    border: var(--scroll-btn-border);
    backdrop-filter: var(--scroll-btn-blur);
    -webkit-backdrop-filter: var(--scroll-btn-blur);
    border-radius: 100px;
    color: var(--color-white);
    flex-shrink: 0;
    transition: background var(--transition-fast);
    z-index: 2;
}

.sobre-hero .hero__scroll:hover {
    background: rgba(255, 255, 255, 0.35);
}

.sobre-hero .hero__scroll-arrow {
    animation: scrollPulse 2s ease-in-out infinite;
}

.sobre-hero .hero__scroll-arrow--bottom {
    animation-delay: 0.3s;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

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

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

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

    .sobre-hero__title {
        font-size: 32px;
        line-height: 40px;
    }

    .sobre-hero__description {
        font-size: 16px;
    }

    .sobre-hero__br {
        display: none;
    }
}

@media (max-width: 480px) {
    .sobre-hero {
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 50px),
            calc(100% - 60px) 100%,
            0 100%
        );
    }

    .sobre-hero__title {
        font-size: 28px;
        line-height: 36px;
    }
}
