/* ============================================================
   Bizinnt v3 — IA completa (mapa mental)
   "Your Next Level Executive Education"
   Paleta Bizinnt 2026
   ============================================================ */

:root {
    --obsidian:     #0D0D0D;
    --charcoal:     #1A1A1A;
    --graphite:     #2E2E2E;
    --smoke:        #6B6B6B;
    --silver:       #AAAAAA;
    --mist:         #E8E6E1;
    --ivory:        #F5F3EE;
    --white:        #FAFAF8;
    --gold-deep:    #8A6A28;
    --gold:         #B48C3C;
    --gold-light:   #D4AA5A;
    --gold-mist:    #F0E8D5;

    --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-sans:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container:    1280px;
    --container-narrow: 920px;
    --r-sm: 4px;
    --r:    8px;
    --r-lg: 14px;
    --r-xl: 22px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--obsidian);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* Tipografia base */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.eyebrow--ondark { color: var(--gold-light); }
.eyebrow--muted { color: var(--smoke); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 1.08;
    color: var(--obsidian);
}
h1 { font-size: clamp(46px, 6.2vw, 82px); }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: 26px; font-weight: 400; line-height: 1.2; }
h4 { font-size: 19px; font-weight: 500; line-height: 1.3; font-family: var(--font-sans); letter-spacing: -0.005em; }

.dark-bg, .dark-bg h1, .dark-bg h2, .dark-bg h3 { color: var(--white); }
.dark-bg p, .dark-bg .lead { color: var(--silver); }

/* ============================================================
   Top bar — espaço do aluno + para empresas
   ============================================================ */
.topbar {
    background: var(--obsidian);
    color: var(--silver);
    font-size: 12px;
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid var(--graphite);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__left { display: flex; gap: 18px; align-items: center; }
.topbar__left .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); display: inline-block; margin-right: 6px; vertical-align: middle; }
.topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__right a { color: var(--silver); transition: color 180ms; display: inline-flex; align-items: center; gap: 6px; }
.topbar__right a:hover { color: var(--gold-light); }
.topbar__right a.is-strong { color: var(--white); font-weight: 600; }
.topbar__right a.is-strong:hover { color: var(--gold-light); }

/* ============================================================
   Header (menu)
   ============================================================ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245, 243, 238, 0.94);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--mist);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 32px; }
.brand {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.022em;
    color: var(--obsidian);
    flex-shrink: 0;
}
.brand__i { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav__list { display: flex; gap: 26px; align-items: center; }
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--obsidian);
    transition: color 180ms;
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
}
.nav__link:hover::after, .nav__item:hover > .nav__link::after { transform: scaleX(1); }
.nav__link svg { width: 10px; height: 10px; opacity: 0.6; }

/* Dropdown */
.nav__item { position: relative; }
.nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r);
    padding: 12px;
    box-shadow: 0 16px 40px -12px rgba(13,13,13,0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms, visibility 200ms, transform 200ms;
    display: grid;
    gap: 4px;
}
.nav__item:hover .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a {
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--obsidian);
    transition: background 160ms, color 160ms;
    display: block;
}
.nav__menu a:hover { background: var(--gold-mist); color: var(--gold-deep); }

.header__cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* Botões */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    transition: all 200ms var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--obsidian); border-color: var(--obsidian); }
.btn--ghost:hover { background: var(--obsidian); color: var(--white); }
.btn--ghost-ondark { color: var(--white); border-color: var(--silver); }
.btn--ghost-ondark:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--white { background: var(--white); color: var(--obsidian); }
.btn--white:hover { background: var(--gold-light); }
.btn--sm { padding: 10px 16px; font-size: 11px; }
.btn--lg { padding: 16px 28px; font-size: 13px; }
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
    background: var(--obsidian);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero__track {
    display: flex;
    transition: transform 600ms var(--ease);
    width: 100%;
}
.hero__slide {
    flex: 0 0 100%;
    padding: 88px 0 96px;
    position: relative;
}
.hero__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__slide--mba::before {
    background:
        radial-gradient(ellipse at 88% 0%, rgba(212, 170, 90, 0.16), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(46, 46, 46, 0.55), transparent 55%);
}
.hero__slide--cursos::before {
    background:
        radial-gradient(ellipse at 10% 0%, rgba(212, 170, 90, 0.12), transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(138, 106, 40, 0.30), transparent 50%);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.hero__title { color: var(--white); margin: 18px 0 24px; max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.hero__lead { font-size: 18px; color: var(--silver); line-height: 1.55; max-width: 50ch; margin-bottom: 28px; }
.hero__diffs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
/* Selos institucionais (Harvard / MIT / MEC) — estilo medalhão */
.hero__diff {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    background: rgba(180, 140, 60, 0.06);
    border: 1px solid rgba(212, 170, 90, 0.28);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 6px;
    line-height: 1.25;
    transition: border-color 200ms, background 200ms;
}
.hero__diff:hover { border-color: rgba(212, 170, 90, 0.55); background: rgba(180, 140, 60, 0.10); }
.hero__diff::before {
    content: "✦";
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 170, 90, 0.30) 0%, rgba(180, 140, 60, 0.18) 100%);
    border: 1px solid rgba(212, 170, 90, 0.45);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
}
/* Selos com letra customizada via nth-of-type — sem precisar mexer no HTML */
.hero__diffs .hero__diff:nth-of-type(1)::before { content: "★"; }
.hero__diffs .hero__diff:nth-of-type(2)::before { content: "M"; font-size: 14px; font-weight: 500; }
.hero__diffs .hero__diff:nth-of-type(3)::before { content: "H"; font-size: 14px; font-weight: 500; }
.hero__diffs .hero__diff:nth-of-type(4)::before { content: "+"; font-size: 18px; }

/* Versão clara para uso em fundo light (page-hero usa fundo dark, então fica OK) */
.section--canvas .hero__diff,
.section--mist .hero__diff {
    background: rgba(180, 140, 60, 0.08);
    border-color: rgba(180, 140, 60, 0.30);
    color: var(--gold-deep);
}
.section--canvas .hero__diff::before,
.section--mist .hero__diff::before {
    background: var(--white);
    border-color: rgba(180, 140, 60, 0.40);
    color: var(--gold-deep);
}

/* ============================================================
   Stats strip — faixa de números (após hero)
   ============================================================ */
.stats-strip {
    background: var(--ivory);
    border-bottom: 1px solid var(--mist);
    padding: 56px 0;
}
.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}
.stats-strip__item {
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.stats-strip__item + .stats-strip__item::before {
    content: "";
    position: absolute;
    left: 0; top: 12px; bottom: 12px;
    width: 1px;
    background: var(--mist);
}
.stats-strip__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.4vw, 60px);
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.stats-strip__num em {
    font-style: italic;
    color: var(--gold);
}
.stats-strip__lbl {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.4;
    font-weight: 500;
    display: block;
    max-width: 22ch;
    margin: 0 auto;
}

/* ============================================================
   Testimonials (depoimentos com foto + nome + cargo)
   ============================================================ */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: border-color 220ms, transform 220ms;
    position: relative;
}
.testimonial-card:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--gold-mist);
    line-height: 1;
    font-weight: 400;
    z-index: 0;
}
.testimonial-card > * { position: relative; }
.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.4;
    color: var(--obsidian);
    font-weight: 400;
    letter-spacing: -0.005em;
    flex-grow: 1;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--mist);
    padding-top: 18px;
}
.testimonial-card__info { display: flex; flex-direction: column; }
.testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--obsidian);
    letter-spacing: -0.005em;
}
.testimonial-card__role {
    font-size: 12px;
    color: var(--smoke);
    margin-top: 2px;
    line-height: 1.4;
}

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -8px rgba(13, 13, 13, 0.25), 0 4px 10px -4px rgba(180, 140, 60, 0.40);
    transition: transform 220ms var(--ease), background 220ms;
    text-decoration: none;
}
.wa-float:hover { background: var(--gold-deep); transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float__tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--obsidian);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms;
}
.wa-float__tooltip::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent var(--obsidian);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

@media (max-width: 760px) {
    .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .wa-float svg { width: 24px; height: 24px; }
    .wa-float__tooltip { display: none; }
    .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .stats-strip__item + .stats-strip__item::before { display: none; }
    .stats-strip__item:nth-child(odd) { border-right: 1px solid var(--mist); }
    .testimonials-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .stats-strip__grid { grid-template-columns: 1fr; }
    .stats-strip__item:nth-child(odd) { border-right: none; }
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual side (MBA collage / Cursos card) */
.hero__visual {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, transparent 0%, transparent 55%, rgba(180, 140, 60, 0.18) 100%);
    pointer-events: none;
}
.hero__visual-tag {
    align-self: flex-start;
    background: var(--gold-mist);
    color: var(--gold-deep);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 1;
}
.hero__visual-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    z-index: 1;
}
.hero__visual-title em { font-style: italic; color: var(--gold-light); }
.hero__visual-meta {
    display: grid;
    gap: 12px;
    z-index: 1;
}
.hero__visual-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid var(--graphite);
    padding-top: 12px;
    font-size: 13px;
}
.hero__visual-meta-item .k { color: var(--silver); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; font-weight: 600; }
.hero__visual-meta-item .v { color: var(--white); font-weight: 600; }

/* Carousel controls */
.hero__controls {
    position: absolute;
    bottom: 28px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 5;
}
.hero__dot {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: background 220ms;
    padding: 0;
}
.hero__dot.is-active { background: var(--gold-light); }
.hero__dot:hover { background: var(--silver); }
.hero__dot.is-active:hover { background: var(--gold-light); }

.hero__arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 18px; z-index: 5; pointer-events: none; }
.hero__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(13,13,13,0.65);
    border: 1px solid var(--graphite);
    color: var(--white);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 200ms, border-color 200ms;
    pointer-events: auto;
    backdrop-filter: blur(6px);
}
.hero__arrow:hover { background: var(--gold-deep); border-color: var(--gold); }

/* ============================================================
   Manifesto stripe — "Você já chegou longe"
   ============================================================ */
.next-level {
    background: var(--ivory);
    padding: 96px 0;
    border-bottom: 1px solid var(--mist);
    position: relative;
}
.next-level__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.next-level__title {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin: 18px 0 24px;
    letter-spacing: -0.02em;
    font-weight: 300;
}
.next-level__title em { font-style: italic; color: var(--gold); font-weight: 300; }
.next-level__sub {
    font-size: 19px;
    color: var(--smoke);
    line-height: 1.55;
    max-width: 56ch;
    margin: 0 auto 36px;
}
.next-level__sub strong { color: var(--obsidian); font-weight: 600; }
.next-level__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Pra quem é — Trilhas
   ============================================================ */
.section { padding: 96px 0; }
.section--canvas { background: var(--white); }
.section--mist { background: var(--mist); }
.section--obsidian { background: var(--obsidian); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.section__head {
    margin-bottom: 56px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}
.section__head--center { text-align: center; flex-direction: column; align-items: center; }
.section__head h2 { margin-top: 12px; max-width: 22ch; }
.section__head p { font-size: 17px; color: var(--smoke); margin-top: 16px; max-width: 52ch; line-height: 1.55; }
.section--obsidian .section__head p, .section--charcoal .section__head p { color: var(--silver); }
.section__cta { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 8px; align-items: center; }
.section__cta:hover { color: var(--gold); }
.section--obsidian .section__cta, .section--charcoal .section__cta { color: var(--gold-light); }

.trails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.trail {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 200ms, transform 200ms;
}
.trail:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.trail__num { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--gold); }
.trail__title { font-size: 18px; font-weight: 600; color: var(--obsidian); letter-spacing: -0.005em; }
.trail__desc { font-size: 14px; color: var(--smoke); line-height: 1.55; flex-grow: 1; }
.trail__cta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; }

/* ============================================================
   MBAs (cards verticais StartSe-style)
   ============================================================ */
.mbas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.mba-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform 220ms var(--ease), border-color 220ms;
    display: flex;
    flex-direction: column;
}
.mba-card:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 20px 40px -20px rgba(13,13,13,0.16); }
.mba-card__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 60%, var(--gold-deep) 130%);
    position: relative;
    overflow: hidden;
}
.mba-card__cover-num {
    position: absolute;
    bottom: 14px; left: 22px;
    font-family: var(--font-display);
    font-size: 90px;
    color: var(--gold-light);
    font-weight: 300;
    line-height: 1;
    opacity: 0.55;
}
.mba-card__cover-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255,255,255,0.10);
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
}
.mba-card__body { padding: 26px 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.mba-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.mba-card__title { font-size: 22px; line-height: 1.2; flex-grow: 1; }
.mba-card__title em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.mba-card__cta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; gap: 8px; align-items: center; padding-top: 12px; border-top: 1px solid var(--mist); }
.mba-card:hover .mba-card__cta { color: var(--gold); }

/* ============================================================
   Quem ensina — corpo docente
   ============================================================ */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.faculty {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 220ms, transform 220ms;
    display: flex;
    flex-direction: column;
}
.faculty:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.faculty__photo {
    aspect-ratio: 1 / 1.05;
    background: linear-gradient(180deg, var(--gold-mist) 0%, var(--ivory) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.faculty__photo .monogram {
    font-family: var(--font-display);
    font-size: 88px;
    color: var(--gold-deep);
    font-weight: 300;
    letter-spacing: 0.02em;
    z-index: 1;
}
.faculty__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.5), transparent 55%);
    pointer-events: none;
}
.faculty__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
}
.faculty__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.2;
    letter-spacing: -0.005em;
}
.faculty__role {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.45;
    margin-top: 2px;
}
.faculty__role strong { color: var(--obsidian); font-weight: 600; }
.faculty__chip {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

/* Avatar (quotes) */
.avatar {
    background: var(--gold-mist);
    border: 1px solid var(--gold);
    color: var(--gold-deep);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    border-radius: 50%;
    flex-shrink: 0;
}
.avatar--sm { width: 48px; height: 48px; font-size: 18px; }

/* ============================================================
   Prova social — empresas
   ============================================================ */
.proof {
    padding: 64px 0;
    background: var(--ivory);
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}
.proof__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 32px;
}
.proof__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: center;
}
.proof__logo {
    text-align: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--smoke);
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 0;
    transition: color 200ms;
    user-select: none;
}
.proof__logo:hover { color: var(--gold-deep); }
.proof__logo--sans {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============================================================
   Manifesto block
   ============================================================ */
.manifesto-block {
    text-align: left;
    max-width: 760px;
    margin: 0 auto;
}
.manifesto-block__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: -0.012em;
    color: var(--white);
    margin-bottom: 32px;
}
.manifesto-block__quote em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.manifesto-block__quote strong { font-weight: 500; color: var(--white); }
.manifesto-block__signature {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--graphite);
    padding-top: 24px;
    color: var(--silver);
    font-size: 13px;
}
.manifesto-block__signature strong { color: var(--white); font-weight: 600; }

/* ============================================================
   Ecossistema — "Mais do que educação"
   ============================================================ */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.eco-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 220ms, transform 220ms;
    position: relative;
    overflow: hidden;
}
.eco-card:hover { border-color: var(--gold-light); transform: translateY(-3px); }
.eco-card::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--gold); }
.eco-card__icon {
    width: 44px; height: 44px;
    background: var(--gold-mist);
    color: var(--gold-deep);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
}
.eco-card__title { font-size: 26px; }
.eco-card__desc { font-size: 15px; color: var(--smoke); line-height: 1.6; flex-grow: 1; }
.eco-card__list { display: grid; gap: 8px; padding-top: 12px; border-top: 1px solid var(--mist); margin-top: 8px; }
.eco-card__list li { font-size: 13px; color: var(--obsidian); display: flex; gap: 10px; align-items: center; }
.eco-card__list li::before { content: "→"; color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   CTA Final
   ============================================================ */
.cta-final {
    text-align: center;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(180, 140, 60, 0.18), transparent 55%),
        var(--obsidian);
    color: var(--white);
}
.cta-final h2 { color: var(--white); margin: 16px 0 22px; max-width: 24ch; margin-left: auto; margin-right: auto; }
.cta-final h2 em { color: var(--gold-light); font-style: italic; font-weight: 300; }
.cta-final p { color: var(--silver); font-size: 18px; max-width: 56ch; margin: 0 auto 32px; line-height: 1.55; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer (estrutura completa do mapa)
   ============================================================ */
.footer {
    background: var(--obsidian);
    color: var(--silver);
    padding: 80px 0 36px;
    border-top: 1px solid var(--graphite);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--graphite);
    margin-bottom: 28px;
}
.footer .brand { color: var(--white); margin-bottom: 18px; }
.footer__about { font-size: 14px; line-height: 1.6; max-width: 38ch; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
    width: 36px; height: 36px;
    border: 1px solid var(--graphite);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 200ms, color 200ms;
    font-size: 13px;
    font-weight: 600;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: 14px; color: var(--silver); transition: color 180ms; }
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--silver);
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom a:hover { color: var(--gold-light); }

/* ============================================================
   Inner pages — Page Hero
   ============================================================ */
.page-hero {
    background: var(--obsidian);
    color: var(--white);
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 88% 0%, rgba(212, 170, 90, 0.14), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(46, 46, 46, 0.55), transparent 55%);
    pointer-events: none;
}
.page-hero__inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.page-hero__title { color: var(--white); margin: 16px 0 22px; max-width: 18ch; font-size: clamp(40px, 5vw, 64px); }
.page-hero__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.page-hero__lead { font-size: 17px; color: var(--silver); line-height: 1.55; max-width: 50ch; margin-bottom: 28px; }
.page-hero__diffs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero__card {
    background: var(--charcoal);
    border: 1px solid var(--graphite);
    border-radius: var(--r-xl);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.page-hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, transparent 0%, transparent 55%, rgba(180, 140, 60, 0.16) 100%);
    pointer-events: none;
}
.page-hero__card > * { position: relative; z-index: 1; }
.page-hero__card-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--graphite);
    padding-top: 14px;
    font-size: 13px;
}
.page-hero__card-row:first-of-type { border-top: none; padding-top: 0; }
.page-hero__card-row .k { color: var(--silver); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.page-hero__card-row .v { color: var(--white); font-weight: 600; }
.page-hero__card-cta { margin-top: 8px; }

/* Breadcrumbs */
.breadcrumbs {
    background: var(--ivory);
    padding: 14px 0;
    border-bottom: 1px solid var(--mist);
    font-size: 13px;
    color: var(--smoke);
}
.breadcrumbs a { color: var(--smoke); transition: color 180ms; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { margin: 0 10px; color: var(--silver); }
.breadcrumbs .current { color: var(--obsidian); font-weight: 500; }

/* ============================================================
   O que vai aprender (soft + hard skills)
   ============================================================ */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.skills-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.skills-card::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 3px; background: var(--gold); }
.skills-card__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.skills-card__title { font-size: 26px; margin-bottom: 20px; }
.skills-card__list { display: grid; gap: 10px; }
.skills-card__list li {
    font-size: 14px;
    color: var(--obsidian);
    padding: 12px 0;
    border-top: 1px solid var(--mist);
    display: flex;
    gap: 12px;
}
.skills-card__list li::before {
    content: "→";
    color: var(--gold-deep);
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================================
   Curriculum / Módulos
   ============================================================ */
.curriculum { display: grid; gap: 0; }
.module {
    border-top: 1px solid var(--graphite);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: center;
}
.module:last-child { border-bottom: 1px solid var(--graphite); }
.module__num { font-family: var(--font-display); font-size: 36px; color: var(--gold-light); font-weight: 300; line-height: 1; }
.module__body h4 { color: var(--white); font-family: var(--font-display); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 6px; }
.module__body p { color: var(--silver); font-size: 14px; line-height: 1.55; max-width: 72ch; }
.module__meta { color: var(--silver); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   Investimento — pricing card
   ============================================================ */
.investment {
    background: linear-gradient(155deg, var(--white) 0%, var(--gold-mist) 130%);
    border: 1px solid var(--gold-light);
    border-radius: var(--r-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.investment__label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.investment__title { font-size: 32px; margin-bottom: 14px; }
.investment__desc { color: var(--smoke); font-size: 15px; line-height: 1.6; max-width: 50ch; margin-bottom: 18px; }
.investment__perks { display: grid; gap: 8px; }
.investment__perks li { font-size: 13px; color: var(--obsidian); display: flex; gap: 10px; align-items: center; }
.investment__perks li::before { content: "✓"; color: var(--gold-deep); font-weight: 700; }
.investment__price { text-align: center; padding: 28px; background: var(--white); border: 1px solid var(--gold-light); border-radius: var(--r-lg); }
.investment__price-from { font-size: 12px; color: var(--smoke); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.investment__price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--obsidian); margin: 6px 0; line-height: 1; }
.investment__price-amount sup { font-size: 16px; vertical-align: top; }
.investment__price-note { font-size: 12px; color: var(--smoke); margin-bottom: 18px; }

/* ============================================================
   Form (login, empresas)
   ============================================================ */
.form-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-xl);
    padding: 48px;
    max-width: 480px;
    margin: 0 auto;
}
.form-card--wide { max-width: 720px; }
.form-card h2 { font-size: 32px; margin-bottom: 12px; }
.form-card p { color: var(--smoke); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--smoke); }
.field input, .field textarea, .field select {
    border: 1px solid var(--mist);
    border-radius: var(--r);
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    background: var(--ivory);
    transition: border-color 180ms, background 180ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; justify-content: center; }
.form-card__foot { margin-top: 18px; font-size: 13px; color: var(--smoke); text-align: center; }
.form-card__foot a { color: var(--gold-deep); font-weight: 600; }
.form-card__foot a:hover { color: var(--gold); }

/* ============================================================
   Trilhas filter (toolbar)
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}
.filter-bar button {
    padding: 8px 16px;
    border: 1px solid var(--mist);
    border-radius: 999px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--obsidian);
    transition: all 180ms;
}
.filter-bar button.is-active, .filter-bar button:hover {
    background: var(--obsidian);
    color: var(--white);
    border-color: var(--obsidian);
}

/* ============================================================
   Generic two-column intro
   ============================================================ */
.intro-cols {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.intro-cols .lead-md {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 300;
    color: var(--obsidian);
    letter-spacing: -0.01em;
}
.intro-cols .lead-md em { font-style: italic; color: var(--gold-deep); }
.intro-cols__body p { color: var(--smoke); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }
.intro-cols__body p:last-child { margin-bottom: 0; }

/* responsivo extra */
@media (max-width: 1100px) {
    .page-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .investment { grid-template-columns: 1fr; padding: 36px; }
    .intro-cols { grid-template-columns: 1fr; gap: 28px; }
    .skills-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .module { grid-template-columns: 1fr; gap: 8px; }
    .module__num { font-size: 28px; }
    .form-card { padding: 32px 24px; }
}

/* ============================================================
   MBA card — pricing visível (listagem mbas.html)
   ============================================================ */
.mba-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 12px;
    color: var(--smoke);
    padding-top: 10px;
    border-top: 1px solid var(--mist);
    margin-top: 6px;
}
.mba-card__details strong { color: var(--obsidian); font-weight: 600; }
.mba-card__price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0 6px;
    margin-top: 4px;
    border-top: 1px dashed var(--mist);
}
.mba-card__price-from {
    font-size: 11px;
    color: var(--smoke);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.mba-card__price-amount {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold-deep);
    font-weight: 400;
    line-height: 1;
}
.mba-card__price-amount sup { font-size: 11px; vertical-align: top; font-weight: 500; }
.mba-card__price-amount sub { font-size: 11px; vertical-align: baseline; color: var(--smoke); font-weight: 500; }

/* ============================================================
   Lead magnet — banner gratuito (aula aberta)
   ============================================================ */
.lead-magnet {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(212, 170, 90, 0.10), transparent 55%),
        var(--charcoal);
    color: var(--white);
    padding: 64px 0;
    border-top: 1px solid var(--graphite);
    border-bottom: 1px solid var(--graphite);
}
.lead-magnet__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: center;
}
.lead-magnet__title {
    color: var(--white);
    font-size: clamp(28px, 3.4vw, 40px);
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.012em;
    margin: 14px 0 14px;
    max-width: 22ch;
}
.lead-magnet__title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.lead-magnet__sub {
    color: var(--silver);
    font-size: 16px;
    line-height: 1.55;
    max-width: 50ch;
    margin-bottom: 24px;
}
.lead-magnet__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--silver);
    font-size: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--graphite);
    margin-top: 24px;
}
.lead-magnet__meta-item { display: flex; align-items: center; gap: 8px; }
.lead-magnet__meta-item strong { color: var(--white); font-weight: 600; }
.lead-magnet__meta-item .icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(212, 170, 90, 0.15);
    border: 1px solid rgba(212, 170, 90, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
}
.lead-magnet__cta-card {
    background: linear-gradient(155deg, rgba(255,255,255,0.04) 0%, transparent 100%);
    border: 1px solid var(--graphite);
    border-radius: var(--r-xl);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.lead-magnet__cta-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(212, 170, 90, 0.18), transparent 55%);
    pointer-events: none;
}
.lead-magnet__cta-card > * { position: relative; }
.lead-magnet__cta-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    align-self: flex-start;
}
.lead-magnet__cta-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.22;
    letter-spacing: -0.01em;
}
.lead-magnet__cta-perks { display: grid; gap: 8px; padding: 12px 0; }
.lead-magnet__cta-perks li { font-size: 13px; color: var(--silver); display: flex; gap: 10px; }
.lead-magnet__cta-perks li::before { content: "✓"; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   Press strip — Bizinnt na imprensa
   ============================================================ */
.press {
    background: var(--white);
    padding: 56px 0;
    border-top: 1px solid var(--mist);
    border-bottom: 1px solid var(--mist);
}
.press__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 32px;
}
.press__strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px;
    align-items: center;
}
.press__logo {
    text-align: center;
    color: var(--smoke);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 200ms;
    user-select: none;
    line-height: 1.2;
    padding: 8px 0;
}
.press__logo:hover { color: var(--gold-deep); }
.press__logo--serif {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.press__logo--sans {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.press__logo small {
    display: block;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 4px;
}

/* ============================================================
   Calendar — calendario.html (próximas turmas)
   ============================================================ */
.calendar-list-page {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--mist);
}
.cal-row {
    display: grid;
    grid-template-columns: 130px 1.5fr 1fr 1fr auto;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--mist);
    align-items: center;
    transition: background 180ms;
}
.cal-row:hover { background: rgba(180, 140, 60, 0.04); }
.cal-row--past { opacity: 0.45; }
.cal-row--past:hover { background: transparent; }
.cal-date {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 300;
    color: var(--gold-deep);
    line-height: 1;
}
.cal-date span {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--smoke);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 6px;
}
.cal-program {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.25;
}
.cal-program em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.cal-meta { font-size: 13px; color: var(--smoke); line-height: 1.55; }
.cal-meta strong { color: var(--obsidian); font-weight: 600; }
.cal-vacancy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.cal-vacancy--open { background: var(--gold-mist); color: var(--gold-deep); }
.cal-vacancy--low { background: rgba(212, 170, 90, 0.20); color: var(--gold-deep); border: 1px dashed var(--gold-deep); }
.cal-vacancy--closed { background: var(--mist); color: var(--smoke); }
.cal-vacancy::before { content: "●"; font-size: 8px; }
.cal-vacancy--low::before { color: var(--gold); }
.cal-vacancy--closed::before { color: var(--silver); }

@media (max-width: 900px) {
    .lead-magnet__inner { grid-template-columns: 1fr; gap: 32px; }
    .press__strip { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .cal-row { grid-template-columns: 1fr; gap: 12px; }
    .cal-date { font-size: 30px; }
}
@media (max-width: 480px) {
    .press__strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Insights — editorial cards (autoridade)
   ============================================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.insight-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 220ms var(--ease), border-color 220ms;
}
.insight-card:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: 0 18px 40px -22px rgba(13,13,13,0.16); }
.insight-card--feature {
    grid-column: span 2;
    grid-row: span 2;
}
.insight-card__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--charcoal) 60%, var(--gold-deep) 130%);
    position: relative;
    flex-shrink: 0;
}
.insight-card--feature .insight-card__cover { aspect-ratio: 16 / 8; }
.insight-card__cover-edition {
    position: absolute;
    bottom: 16px; left: 22px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold-light);
    font-style: italic;
    opacity: 0.85;
    letter-spacing: 0.02em;
}
.insight-card__cover-tag {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--gold-light);
    backdrop-filter: blur(8px);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
}
.insight-card__body { padding: 26px 26px 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 12px; }
.insight-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.insight-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.22;
    color: var(--obsidian);
    letter-spacing: -0.005em;
}
.insight-card--feature .insight-card__title { font-size: 32px; }
.insight-card__excerpt {
    font-size: 14px;
    color: var(--smoke);
    line-height: 1.6;
    flex-grow: 1;
}
.insight-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--mist);
    font-size: 12px;
    color: var(--smoke);
}
.insight-card__author-name { color: var(--obsidian); font-weight: 600; }
.insight-card__author-meta::before { content: " · "; color: var(--silver); }

/* Insight detail */
.insight-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 0 80px;
}
.insight-article__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: var(--smoke);
    font-size: 13px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.insight-article__meta strong { color: var(--obsidian); font-weight: 600; }
.insight-article h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 22ch;
}
.insight-article h1 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.insight-article .lead {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.45;
    color: var(--smoke);
    font-weight: 400;
    margin: 28px 0 40px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}
.insight-article h2 {
    font-size: 28px;
    margin: 48px 0 16px;
}
.insight-article h3 {
    font-size: 22px;
    margin: 36px 0 12px;
}
.insight-article p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
    color: var(--obsidian);
}
.insight-article p strong { color: var(--obsidian); font-weight: 600; }
.insight-article p em { color: var(--gold-deep); font-style: italic; }
.insight-article ul, .insight-article ol {
    padding-left: 24px;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.75;
}
.insight-article ul li { padding-left: 8px; margin-bottom: 8px; }
.insight-article ul li::marker { color: var(--gold); }
.insight-article blockquote {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.4;
    color: var(--obsidian);
    font-weight: 400;
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
}
.insight-article blockquote cite {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--smoke);
    margin-top: 12px;
    font-style: normal;
}
.insight-article hr {
    border: none;
    height: 1px;
    background: var(--mist);
    margin: 48px 0;
}

.insight-author-card {
    background: var(--ivory);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 48px;
}
.insight-author-card__photo {
    width: 80px; height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--gold-mist) 0%, var(--ivory) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--gold-deep);
    border: 1px solid var(--gold);
}
.insight-author-card__info h4 { font-size: 18px; margin-bottom: 4px; font-family: var(--font-display); font-weight: 400; color: var(--obsidian); }
.insight-author-card__info p { font-size: 13px; color: var(--smoke); line-height: 1.55; }

/* ============================================================
   Sobre — timeline + valores
   ============================================================ */
.timeline {
    display: grid;
    gap: 0;
    border-left: 2px solid var(--mist);
    padding-left: 32px;
    max-width: 720px;
    margin: 0 auto;
}
.timeline-item {
    padding-bottom: 32px;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -41px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--ivory);
    box-shadow: 0 0 0 1px var(--gold);
}
.timeline-item__year {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-deep);
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.timeline-item__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}
.timeline-item__desc {
    font-size: 15px;
    color: var(--smoke);
    line-height: 1.65;
    max-width: 56ch;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.value {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: var(--r-lg);
    transition: border-color 220ms, transform 220ms;
}
.value:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.value__num {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    font-weight: 300;
    display: block;
    line-height: 1;
    margin-bottom: 14px;
}
.value__title { font-size: 22px; margin-bottom: 12px; }
.value__desc { font-size: 14px; color: var(--smoke); line-height: 1.6; }

/* ============================================================
   Partners — bloco de parceiros (home + página)
   ============================================================ */
.partners {
    padding: 56px 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--mist);
}
.partners__head {
    text-align: center;
    margin-bottom: 36px;
}
.partners__head .eyebrow { display: block; margin-bottom: 6px; }
.partners__head h3 {
    font-size: 22px;
    color: var(--obsidian);
    font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: -0.005em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.partner-group__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--mist);
}
.partner-group__logos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.partner-logo {
    text-align: center;
    color: var(--smoke);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 200ms;
    user-select: none;
    line-height: 1.2;
}
.partner-logo:hover { color: var(--gold-deep); }
.partner-logo--serif {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
}
.partner-logo--sans {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .insight-card--feature { grid-column: span 2; grid-row: span 1; }
    .insight-card--feature .insight-card__title { font-size: 26px; }
    .partners-grid { grid-template-columns: 1fr; gap: 32px; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .insights-grid { grid-template-columns: 1fr; }
    .insight-card--feature { grid-column: span 1; }
    .insight-author-card { flex-direction: column; text-align: center; }
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } * { animation: none !important; transition: none !important; } }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { aspect-ratio: 16 / 9; }
    .trails { grid-template-columns: repeat(2, 1fr); }
    .mbas { grid-template-columns: repeat(2, 1fr); }
    .faculty-grid { grid-template-columns: repeat(3, 1fr); }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .proof__strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .container { padding: 0 22px; }
    .topbar__inner { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }
    .nav { display: none; }
    .header__cta .btn:not(.btn--primary) { display: none; }
    .section { padding: 72px 0; }
    .next-level { padding: 80px 0; }
    .hero__slide { padding: 64px 0 88px; }
    .hero__visual-title { font-size: 32px; }
    .trails, .mbas, .faculty-grid { grid-template-columns: 1fr; }
    .proof__strip { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    h1 { font-size: 38px; }
    h2 { font-size: 28px; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__diff { font-size: 11px; padding: 6px 10px; }
}
