
.breadcrumb {
    margin-bottom: 22px;
    font-size: .82rem;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 9px;
}
.breadcrumb li + li::before {
    content: "/";
    opacity: .45;
}
.breadcrumb--light,
.breadcrumb--light a {
    color: rgba(255, 255, 255, .72);
}
.breadcrumb--light a:hover {
    color: var(--reinvent-yellow);
}

.content-hub-page,
.content-article-page {
    background: var(--reinvent-background);
}

.content-hub-hero,
.article-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 24%, rgba(7, 152, 211, .23), transparent 32%),
        linear-gradient(135deg, #031426 0%, #072b4b 58%, #061b33 100%);
}

.content-hub-hero::after,
.article-hero::after {
    content: "";
    position: absolute;
    inset: auto -9% -48% auto;
    width: 560px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    box-shadow: 0 0 0 72px rgba(255, 255, 255, .025), 0 0 0 144px rgba(255, 255, 255, .018);
    pointer-events: none;
}

.content-hub-hero__grid,
.article-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    align-items: center;
    height: 600px;
    min-height: 0;
    max-height: 640px;
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 32px;
}

.content-hub-hero__copy,
.article-hero__copy {
    max-width: 770px;
}

.article-hero__copy {
    max-width: 900px;
}

.content-hub-hero h1,
.article-hero h1 {
    color: #fff;
    margin: 0 0 22px;
    font-size: clamp(2.7rem, 4vw, 4.25rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.article-hero h1 {
    font-size: clamp(2.45rem, 3.2vw, 3rem);
}

.content-hub-hero__copy > p:not(.eyebrow),
.article-hero__summary {
    max-width: 690px;
    color: rgba(255, 255, 255, .76);
    font-size: 1rem;
    line-height: 1.58;
}

.content-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.content-hub-hero__visual,
.article-hero__visual {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-hub-hero__visual img,
.article-hero__visual img {
    width: min(100%, 500px);
    height: auto;
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, .24));
}

.content-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border: 1px solid rgba(6, 27, 51, .12);
    border-radius: 999px;
    color: #8a6419;
    background: rgba(255, 197, 40, .12);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.content-category--light {
    color: var(--reinvent-yellow);
    border-color: rgba(255, 197, 40, .32);
    background: rgba(255, 197, 40, .08);
    margin-bottom: 18px;
}

.content-featured {
    background: #fff;
}

.content-featured__grid {
    display: grid;
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

.content-featured__media {
    margin: 0;
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #e9f1f7, #f9fbfd);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.content-featured__media img {
    width: min(88%, 510px);
    height: auto;
}

.content-featured__copy h2 {
    max-width: 780px;
    margin: 18px 0;
    font-size: clamp(2.35rem, 4vw, 4.2rem);
    line-height: 1.02;
}

.content-featured__copy > p {
    max-width: 690px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.content-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 26px 0 30px;
    color: var(--reinvent-muted);
    font-size: .84rem;
}

.content-meta span + span::before {
    content: "•";
    margin-right: 24px;
}

.content-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.content-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 36px rgba(4, 26, 51, .06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 152, 211, .27);
    box-shadow: var(--shadow-md);
}

.content-card__media {
    display: grid;
    place-items: center;
    height: 220px;
    background: linear-gradient(150deg, #eaf1f7, #f8fafc);
}

.content-card__media img {
    width: 82%;
    height: 88%;
    object-fit: contain;
}

.content-card__body {
    padding: 28px 26px 30px;
}

.content-card__topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 19px;
}

.content-card__topline > span:last-child {
    color: var(--reinvent-muted);
    font-size: .75rem;
    white-space: nowrap;
}

.content-card h3 {
    margin: 0 0 14px;
    font-size: 1.42rem;
    line-height: 1.2;
}

.content-card h3 a {
    color: var(--reinvent-navy);
}

.content-card p {
    margin: 0 0 22px;
    color: var(--reinvent-muted);
    font-size: .93rem;
    line-height: 1.68;
}

.content-card__link,
.article-related article > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--reinvent-navy);
    font-size: .88rem;
    font-weight: 800;
}

.content-paths {
    background: #fff;
}

.content-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.content-path-grid article {
    min-height: 310px;
    padding: 36px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, #fff, #f7f9fc);
}

.content-path-grid article > span {
    display: block;
    margin-bottom: 44px;
    color: var(--reinvent-gold);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.content-path-grid h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.content-path-grid p {
    min-height: 82px;
    font-size: .94rem;
    line-height: 1.65;
}

.content-path-grid a {
    color: var(--reinvent-navy);
    font-weight: 800;
    border-bottom: 1px solid rgba(6, 27, 51, .26);
}

.content-final-cta {
    padding: 76px 0;
    color: #fff;
    background: linear-gradient(120deg, #031426 0%, #082c4c 62%, #064163 100%);
}

.content-final-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
}

.content-final-cta h2 {
    max-width: 820px;
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.content-final-cta p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .62);
    font-size: .79rem;
}

.article-meta span + span::before {
    content: "•";
    margin-right: 24px;
    color: rgba(255, 197, 40, .72);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 850px) minmax(260px, 330px);
    gap: clamp(48px, 7vw, 90px);
    align-items: start;
    padding-top: 86px;
    padding-bottom: 100px;
}

.article-main {
    min-width: 0;
}

.article-content {
    color: #273547;
    font-size: 1.03rem;
    line-height: 1.82;
}

.article-content > :first-child {
    margin-top: 0;
}

.article-content p {
    margin: 0 0 1.45em;
}

.article-content .article-lead {
    margin-bottom: 1.7em;
    color: var(--reinvent-navy);
    font-size: 1.25rem;
    line-height: 1.72;
}

.article-content h2 {
    scroll-margin-top: calc(var(--visible-header-height) + 24px);
    margin: 2.25em 0 .72em;
    color: var(--reinvent-navy);
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.article-content h3 {
    margin: 0 0 10px;
    color: var(--reinvent-navy);
    font-size: 1.15rem;
}

.article-content a {
    color: #006f9f;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.content-callout,
.content-notice {
    margin: 34px 0;
    padding: 25px 28px;
    border-left: 4px solid var(--reinvent-yellow);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--reinvent-navy);
    background: #fff8df;
}

.content-notice {
    border-left-color: var(--reinvent-blue);
    background: #eaf7fc;
}

.content-definition-grid,
.content-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0 34px;
}

.content-definition-grid article,
.content-comparison > div {
    padding: 24px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: 0 10px 28px rgba(4, 26, 51, .045);
}

.content-definition-grid p,
.content-comparison p {
    margin: 0;
    color: var(--reinvent-muted);
    font-size: .92rem;
    line-height: 1.65;
}

.content-comparison > div > span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #9b741f;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.content-checklist,
.content-steps {
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.content-checklist {
    display: grid;
    gap: 12px;
}

.content-checklist li {
    position: relative;
    padding: 15px 18px 15px 48px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.content-checklist li::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 14px;
    color: #9b741f;
    font-weight: 900;
}

.content-steps {
    counter-reset: content-step;
    display: grid;
    gap: 16px;
}

.content-steps li {
    counter-increment: content-step;
    position: relative;
    min-height: 54px;
    padding-left: 68px;
}

.content-steps li::before {
    content: counter(content-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--reinvent-navy);
    background: var(--reinvent-yellow);
    font-size: .75rem;
    font-weight: 900;
}

.article-sources {
    margin-top: 76px;
    padding-top: 42px;
    border-top: 1px solid var(--reinvent-border);
}

.article-sources h2,
.article-related h2 {
    margin: 0 0 14px;
    font-size: 2rem;
}

.article-sources > p {
    max-width: 760px;
    color: var(--reinvent-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.article-sources ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.article-sources li {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.article-sources a {
    color: var(--reinvent-navy);
    font-size: .88rem;
    line-height: 1.5;
}

.article-sources span {
    color: var(--reinvent-muted);
    font-size: .74rem;
}

.article-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    margin-top: 58px;
    padding: 38px;
    border-radius: var(--radius-md);
    color: #fff;
    background: linear-gradient(135deg, #031426, #073758);
}

.article-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.article-cta p:not(.eyebrow) {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.article-related {
    margin-top: 80px;
}

.article-related__heading {
    margin-bottom: 30px;
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.article-related article {
    padding: 24px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-sm);
    background: #fff;
}

.article-related h3 {
    margin: 18px 0 12px;
    font-size: 1.15rem;
    line-height: 1.25;
}

.article-related h3 a {
    color: var(--reinvent-navy);
}

.article-related p {
    color: var(--reinvent-muted);
    font-size: .86rem;
    line-height: 1.6;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--visible-header-height) + 28px);
    display: grid;
    gap: 18px;
}

.article-sidebar__card {
    padding: 26px;
    border: 1px solid var(--reinvent-border);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.article-sidebar__label {
    display: block;
    margin-bottom: 14px;
    color: #9b741f;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-sidebar__card p {
    color: var(--reinvent-muted);
    font-size: .88rem;
    line-height: 1.68;
}

.article-sidebar__card a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--reinvent-navy);
    font-size: .84rem;
    font-weight: 800;
}

.article-sidebar__card--dark {
    color: #fff;
    border-color: transparent;
    background: var(--reinvent-navy);
}

.article-sidebar__card--dark .article-sidebar__label {
    color: var(--reinvent-yellow);
}

.article-sidebar__card--dark p {
    color: rgba(255, 255, 255, .68);
}

.content-not-found {
    min-height: 72vh;
    padding: calc(var(--header-height) + 120px) 0 100px;
    background: #fff;
}

.content-not-found h1 {
    max-width: 800px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.content-not-found p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 30px;
}

/* Os links editoriais aparecem globalmente apenas no rodapé. */
.footer-content-library {
    margin-top: 54px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-content-library__heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-content-library__heading h2 {
    margin: 0;
    color: #fff;
    font-size: 1.12rem;
}

.footer-content-library__heading a {
    color: var(--reinvent-yellow);
    font-size: .82rem;
    font-weight: 700;
}

.footer-content-library__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content-library__links a {
    color: rgba(255, 255, 255, .62);
    font-size: .8rem;
    line-height: 1.45;
}

.footer-content-library__links a:hover {
    color: var(--reinvent-yellow);
}

@media (max-width: 1100px) {
    .content-hub-hero__grid,
    .article-hero__grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        min-height: 540px;
    }

    .content-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 46px;
    }

    .article-related__grid {
        grid-template-columns: 1fr;
    }

    .footer-content-library__links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .content-hub-hero__grid,
    .article-hero__grid {
        grid-template-columns: minmax(0, 1fr) 280px;
        min-height: 560px;
        padding-top: calc(var(--header-height) + 42px);
    }

    .content-hub-hero h1,
    .article-hero h1 {
        font-size: clamp(2.45rem, 6vw, 3.6rem);
    }

    .content-hub-hero__visual img,
    .article-hero__visual img {
        width: 300px;
    }

    .content-featured__grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .content-featured__media {
        min-height: 340px;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        order: -1;
    }

    .content-path-grid {
        grid-template-columns: 1fr;
    }

    .content-path-grid article {
        min-height: 0;
    }

    .content-path-grid article > span {
        margin-bottom: 24px;
    }

    .content-path-grid p {
        min-height: 0;
    }

    .article-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 740px) {
    .content-hub-hero__grid,
    .article-hero__grid {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: calc(var(--header-height) + 52px);
        padding-bottom: 46px;
    }

    .content-hub-hero__visual,
    .article-hero__visual {
        display: none;
    }

    .content-hub-hero h1,
    .article-hero h1 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .content-card-grid,
    .content-definition-grid,
    .content-comparison,
    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .content-card__media {
        height: 190px;
    }

    .content-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-layout {
        padding-top: 60px;
        padding-bottom: 76px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content .article-lead {
        font-size: 1.12rem;
    }

    .article-cta {
        padding: 28px 22px;
    }

    .article-cta .button {
        width: 100%;
    }

    .footer-content-library__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-content-library__links {
        grid-template-columns: 1fr;
    }
}
