    /* ── HOME HERO ─────────────────────────────────────── */
    .home-hero {
        background: linear-gradient(135deg, var(--verde) 0%, #1e4a1a 55%, var(--dourado) 100%);
        color: #fff;
        padding: 5rem 0 4rem;
        position: relative;
        overflow: hidden;
    }

    .home-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 25%, rgba(200, 148, 58, .2) 0%, transparent 50%),
            radial-gradient(circle at 15% 75%, rgba(74, 124, 63, .25) 0%, transparent 50%);
    }

    .home-hero__eyebrow {
        font-family: var(--font-d);
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        background: rgba(255, 255, 255, .15);
        display: inline-block;
        padding: .3rem .9rem;
        border-radius: 20px;
        margin-bottom: 1rem;
    }

    .home-hero h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: .75rem;
    }

    .home-hero p {
        font-size: 1.05rem;
        opacity: .88;
        max-width: 560px;
        font-weight: 300;
    }

    .home-hero__stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .hero-stat {
        border-left: 3px solid rgba(255, 255, 255, .3);
        padding-left: 1rem;
    }

    .hero-stat__val {
        font-family: var(--font-d);
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
    }

    .hero-stat__lbl {
        font-family: var(--font-d);
        font-size: .7rem;
        opacity: .7;
        margin-top: .1rem;
    }

    /* ── TEMA CARDS ─────────────────────────────────────── */
    .tema-section {
        padding: 3.5rem 0;
    }

    .tema-section__title {
        font-family: var(--font-d);
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--dourado);
        margin-bottom: .3rem;
    }

    .tema-section h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: .4rem;
    }

    .tema-section__sub {
        font-size: .9rem;
        color: var(--cinza-med);
        max-width: 540px;
        margin-bottom: 2.5rem;
    }

    .tema-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: box-shadow .25s, transform .25s;
        display: block;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }

    .tema-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, .13);
        transform: translateY(-4px);
        color: inherit;
    }

    .tema-card__cover {
        height: 180px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tema-card__cover--leite {
        background: linear-gradient(135deg, #4a7c3f, #2d5c24);
    }

    .tema-card__cover--corte {
        background: linear-gradient(135deg, #8b3a1a, #6b2a10);
    }

    .tema-card__cover--floresta {
        background: linear-gradient(135deg, #2d5c24, #1a3a18);
    }

    .tema-card__icon {
        font-size: 4rem;
        opacity: .45;
        position: absolute;
        right: 1.5rem;
        bottom: .5rem;
        line-height: 1;
        user-select: none;
    }

    .tema-card__badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-family: var(--font-d);
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        background: rgba(255, 255, 255, .2);
        color: #fff;
        padding: .25rem .7rem;
        border-radius: 20px;
    }

    .tema-card__title-cover {
        font-family: var(--font-d);
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        z-index: 1;
        text-align: center;
        padding: 0 1.5rem;
    }

    .tema-card__body {
        padding: 1.5rem 1.5rem 1.8rem;
    }

    .tema-card__desc {
        font-size: .85rem;
        color: var(--cinza-med);
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .tema-card__kpis {
        display: flex;
        gap: 1.2rem;
        margin-bottom: 1.4rem;
    }

    .tema-kpi-item {
        flex: 1;
    }

    .tema-kpi-val {
        font-family: var(--font-d);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--cinza-esc);
    }

    .tema-kpi-lbl {
        font-family: var(--font-d);
        font-size: .62rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--cinza-med);
    }

    .tema-card__cta {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        font-family: var(--font-d);
        font-size: .78rem;
        font-weight: 600;
        padding: .5rem 1.1rem;
        border-radius: 8px;
        border: 2px solid;
        transition: all .18s;
    }

    .tema-card__cta--leite {
        color: var(--verde);
        border-color: var(--verde);
    }

    .tema-card__cta--corte {
        color: var(--terra);
        border-color: var(--terra);
    }

    .tema-card__cta--floresta {
        color: #2d5c24;
        border-color: #2d5c24;
    }

    .tema-card:hover .tema-card__cta--leite {
        background: var(--verde);
        color: #fff;
    }

    .tema-card:hover .tema-card__cta--corte {
        background: var(--terra);
        color: #fff;
    }

    .tema-card:hover .tema-card__cta--floresta {
        background: #2d5c24;
        color: #fff;
    }

    /* ── SOBRE O PROJETO ───────────────────────────────── */
    .sobre-projeto {
        padding: 3.5rem 0;
        background: #fff;
        border-bottom: 1px solid var(--cinza-claro);
    }

    .sobre-projeto__texto {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--cinza-med);
        margin-bottom: 1.1rem;
    }

    .sobre-projeto__logos {
        display: flex;
        flex-direction: column;
        gap: .85rem;
    }

    .logo-inst {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--creme);
        border-radius: var(--radius);
        padding: .8rem 1.1rem;
        border-left: 3px solid var(--verde);
    }

    .logo-inst__sigla {
        font-family: var(--font-d);
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .06em;
        background: var(--verde);
        color: #fff;
        padding: .3rem .55rem;
        border-radius: 4px;
        flex-shrink: 0;
        min-width: 44px;
        text-align: center;
    }

    .logo-inst__nome {
        font-family: var(--font-d);
        font-size: .78rem;
        color: var(--cinza-med);
        line-height: 1.3;
    }

    /* ── INDICADORES STRIP ──────────────────────────────── */
    .indicadores-strip {
        padding: 3rem 0;
        background: var(--fundo);
    }

    .indicador-card {
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: 1.5rem 1rem;
        text-align: center;
        border-top: 3px solid var(--verde);
        transition: box-shadow .2s, transform .2s;
        height: 100%;
        min-height: 44px;
    }

    .indicador-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

    .indicador-card--destaque {
        border-top-color: var(--dourado);
    }

    .indicador-card__icone {
        font-size: 1.6rem;
        margin-bottom: .5rem;
        line-height: 1;
    }

    .indicador-card__numero {
        font-family: var(--font-d);
        font-size: 2rem;
        font-weight: 700;
        color: var(--cinza-esc);
        line-height: 1.1;
        margin-bottom: .3rem;
    }

    .indicador-card--destaque .indicador-card__numero {
        color: var(--dourado);
    }

    .indicador-card__label {
        font-family: var(--font-d);
        font-size: .72rem;
        font-weight: 600;
        color: var(--cinza-med);
        line-height: 1.4;
    }

    /* ── DESTAQUES POR CADEIA ───────────────────────────── */
    .destaques-section {
        padding: 3rem 0;
        background: var(--creme);
        border-top: 1px solid var(--cinza-claro);
        border-bottom: 1px solid var(--cinza-claro);
    }

    .destaque-card {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        padding: 1.6rem 1.4rem;
        text-decoration: none;
        color: inherit;
        height: 100%;
        min-height: 44px;
        transition: box-shadow .2s, transform .2s;
        border-bottom: 3px solid var(--cinza-claro);
    }

    .destaque-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-bottom-color: var(--verde);
        color: inherit;
    }

    .destaque-card__cadeia {
        font-family: var(--font-d);
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--cinza-med);
        margin-bottom: .5rem;
    }

    .destaque-card__numero {
        font-family: var(--font-d);
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1;
        margin-bottom: .75rem;
    }

    .destaque-card__contexto {
        font-size: .85rem;
        color: var(--cinza-med);
        line-height: 1.5;
        flex-grow: 1;
        margin-bottom: 1rem;
    }

    .destaque-card__cta {
        font-family: var(--font-d);
        font-size: .75rem;
        font-weight: 600;
        color: var(--verde);
        display: block;
        margin-top: auto;
    }

    /* ── LINHA DO TEMPO (HOME) ──────────────────────────── */
    .timeline-section {
        padding: 3.5rem 0;
        background: var(--fundo);
    }

    .timeline-card--entrega {
        border-left-color: var(--dourado);
    }

    .timeline-tipo--entrega {
        background: var(--areia);
        color: var(--terra);
    }

    /* ── ABOUT STRIP ────────────────────────────────────── */
    .about-strip {
        background: var(--cinza-esc);
        color: rgba(255, 255, 255, .75);
        padding: 2.5rem 0;
    }

    .about-strip h3 {
        font-family: var(--font-d);
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: .5rem;
    }

    .about-strip p {
        font-size: .82rem;
        line-height: 1.7;
    }

    .about-strip__divider {
        width: 1px;
        background: rgba(255, 255, 255, .12);
    }


    @media (max-width: 767px) {
        .home-hero {
            padding: 3rem 0 2.5rem;
        }

        .home-hero h1 {
            font-size: 2rem;
        }

        .hero-stat {
            border-left: none;
            border-top: 2px solid rgba(255, 255, 255, .25);
            padding: .75rem 0 0;
        }

        .home-hero__stats {
            gap: 1rem;
        }

        .about-strip__divider {
            display: none;
        }

        .indicador-card__numero {
            font-size: 1.6rem;
        }

        .destaque-card__numero {
            font-size: 1.9rem;
        }

        .sobre-projeto__texto {
            font-size: .95rem;
        }
    }

    @media (max-width: 480px) {

        .indicadores-strip,
        .destaques-section,
        .sobre-projeto,
        .timeline-section {
            padding: 2rem 0;
        }
    }

    /* ── BANNER CAPACITAÇÕES ───────────────────────────────────────── */
    .banner-cursos-section {
        padding: 2rem 0;
        font-family: 'Source Sans 3', sans-serif;
    }

    .banner-horizontal {
        position: relative;
        background: #1B3D1A;
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 32px 44px;
        gap: 32px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .banner-horizontal:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    }

    .banner-horizontal::before {
        content: '';
        position: absolute;
        right: 260px;
        top: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(139, 179, 49, 0.08);
        pointer-events: none;
    }

    .banner-horizontal::after {
        content: '';
        position: absolute;
        right: 160px;
        bottom: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(200, 163, 52, 0.07);
        pointer-events: none;
    }

    .banner-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
        min-width: 0;
        position: relative;
    }

    .banner-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(139, 179, 49, 0.2);
        color: #A8CC3C;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 20px;
        width: fit-content;
    }

    .banner-tag-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #A8CC3C;
        animation: banner-pulse 2s infinite;
        flex-shrink: 0;
    }

    @keyframes banner-pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.4;
        }
    }

    .banner-title {
        font-size: 26px;
        font-weight: 700;
        color: #F0EBD8;
        line-height: 1.2;
        margin: 0;
    }

    .banner-desc {
        font-size: 14px;
        color: rgba(240, 235, 216, 0.6);
        margin: 0;
        line-height: 1.5;
        max-width: 480px;
    }

    .banner-divider {
        width: 1px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .banner-center {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
        flex-shrink: 0;
    }

    .pills-row {
        display: flex;
        gap: 8px;
    }

    .pill {
        font-size: 11px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(240, 235, 216, 0.75);
        white-space: nowrap;
        border: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .banner-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
        flex-shrink: 0;
        position: relative;
    }

    .stat-block {
        text-align: right;
    }

    .stat-num {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 48px;
        font-weight: 700;
        color: #A8CC3C;
        line-height: 1;
        display: block;
    }

    .stat-label {
        font-size: 12px;
        color: rgba(240, 235, 216, 0.5);
        letter-spacing: 0.5px;
    }

    .banner-cta {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #A8CC3C;
        color: #1B3D1A;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 40px;
        transition: background 0.2s ease, gap 0.2s ease;
        white-space: nowrap;
    }

    .banner-horizontal:hover .banner-cta {
        background: #BDE04A;
        gap: 14px;
    }

    .cta-arrow {
        font-size: 16px;
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .banner-horizontal:hover .cta-arrow {
        transform: translateX(3px);
    }

    @media (max-width: 900px) {
        .banner-horizontal {
            padding: 28px 32px;
            gap: 24px;
        }

        .banner-center,
        .banner-horizontal .banner-divider:last-of-type {
            display: none;
        }
    }

    @media (max-width: 600px) {
        .banner-horizontal {
            flex-direction: column;
            align-items: flex-start;
            padding: 24px 20px;
            gap: 20px;
        }

        .banner-center,
        .banner-divider {
            display: none;
        }

        .banner-right {
            align-items: flex-start;
            width: 100%;
        }

        .stat-block {
            text-align: left;
        }

        .banner-title {
            font-size: 22px;
        }

        .banner-cta {
            width: 100%;
            justify-content: center;
        }
    }