:root {
    --yellow: #F5D33D;
    --yellow-soft: #FCE588;
    --yellow-dark: #C9A41E;
    --navy: #0F2545;
    --navy-mid: #2A436A;
    --navy-soft: #5C7493;
    --paper: #EFEDE8;
    --paper-cool: #E6E7EA;
    --paper-warm: #F5F2EB;
    --ink: #0B0D11;
    --ink-soft: #1A1E26;
    --rule: rgba(15, 37, 69, 0.16);
    --display: "Montserrat", system-ui, sans-serif;
    --serif: "Fraunces", Georgia, serif;
    --body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--navy);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--navy); }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 840px; margin: 0 auto; padding: 0 48px; }

/* ── Typography utilities ──────────────────────────────────────────── */
.eyebrow {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: ""; width: 32px; height: 1px; background: var(--navy); opacity: 0.6;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; color: var(--navy); }

/* ── Section header ─────────────────────────────────────────────────── */
.section-head { margin-bottom: 56px; }
.section-head h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    margin: 16px 0 20px;
    text-wrap: balance;
}
.section-head p {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.45;
    color: var(--navy-mid);
    max-width: 720px;
    margin: 0;
}

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--paper) 80%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    max-width: 1320px; margin: 0 auto;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--display); font-weight: 800; font-size: 16px;
    letter-spacing: 0.5px; color: var(--navy);
}
.nav-brand svg { width: 28px; height: 28px; }
.nav-links {
    display: flex; gap: 36px;
    font-family: var(--display); font-size: 14px; font-weight: 500;
}
.nav-links a {
    color: var(--navy); opacity: 0.7;
    transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-inner { padding: 16px 24px; }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.hero-text .eyebrow { margin-bottom: 24px; }
.hero h1 {
    font-family: var(--display);
    font-size: clamp(64px, 9vw, 132px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -3.5px;
    margin-bottom: 28px;
    text-wrap: balance;
}
.hero h1 .accent { color: var(--yellow-dark); font-style: italic; font-family: var(--serif); font-weight: 500; }
.hero-role {
    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
    line-height: 1.35;
    color: var(--navy-mid);
    max-width: 540px;
    margin-bottom: 32px;
}
.hero-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--navy-mid);
    max-width: 540px;
    margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-portrait {
    position: relative;
    aspect-ratio: 4/5;
}
.hero-portrait .halo {
    position: absolute;
    width: 80%; aspect-ratio: 1; top: 8%; left: 10%;
    background: var(--yellow); border-radius: 50%;
    z-index: 0;
}
.hero-portrait img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    z-index: 1;
    filter: contrast(1.02);
}
/* Quote stat in hero corner */
.hero-stat {
    position: absolute; right: 0; bottom: 60px;
    background: var(--navy); color: var(--paper);
    padding: 24px 28px;
    max-width: 280px;
    z-index: 2;
    font-family: var(--display);
}
.hero-stat strong {
    display: block; font-size: 56px; font-weight: 900; line-height: 1;
    color: var(--yellow); letter-spacing: -1px;
}
.hero-stat span {
    display: block; font-size: 13px; letter-spacing: 2px;
    text-transform: uppercase; margin-top: 8px; opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--display); font-weight: 600; font-size: 14px;
    letter-spacing: 0.5px;
    padding: 16px 28px;
    border: 1.5px solid var(--navy);
    background: var(--navy); color: var(--paper);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.btn:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn.small { padding: 10px 18px; font-size: 13px; }
.btn::after { content: "→"; font-size: 16px; line-height: 1; }

/* ── Sobre ─────────────────────────────────────────────────────────── */
.sobre {
    padding: 120px 0 100px;
    border-top: 1px solid var(--rule);
}
.sobre-grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 80px;
    align-items: start;
}
.sobre-left .eyebrow { margin-bottom: 24px; }
.sobre-left h2 {
    font-size: 56px; font-weight: 800; letter-spacing: -1.5px; line-height: 1;
}
.sobre-right p {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.55;
    color: var(--navy-mid);
    margin: 0 0 24px;
}
.sobre-right p.sobre-note {
    font-family: var(--body);
    font-size: 17px;
    color: var(--navy-mid);
}
.sobre-right p.sobre-note strong { color: var(--navy); }

/* ── Livros em destaque ─────────────────────────────────────────────── */
.destaque {
    padding: 100px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
}
.destaque-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 70px;
}
.destaque-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
}
.destaque-item:last-child { border-bottom: none; padding-bottom: 0; }
.destaque-item:nth-child(even) {
    grid-template-columns: 1fr 320px;
}
.destaque-item:nth-child(even) .destaque-cover { order: 2; }
.destaque-item:nth-child(even) .destaque-body { order: 1; text-align: right; }
.destaque-item:nth-child(even) .destaque-body .destaque-cta { justify-content: flex-end; }

.destaque-cover { aspect-ratio: 2/3; }
.destaque-body .num {
    font-family: var(--display); font-size: 14px; font-weight: 600;
    letter-spacing: 3px; color: var(--navy-soft);
}
.destaque-body h3 {
    font-family: var(--display); font-size: 52px; font-weight: 800;
    line-height: 1; letter-spacing: -1.5px;
    margin: 8px 0 20px;
    text-wrap: balance;
}
.destaque-body p {
    font-family: var(--serif); font-size: 21px;
    line-height: 1.5; color: var(--navy-mid);
    margin: 0 0 28px; max-width: 580px;
}
.destaque-item:nth-child(even) .destaque-body p { margin-left: auto; }
.destaque-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Book covers (SVG-styled) ───────────────────────────────────────── */
.cover {
    position: relative;
    width: 100%; height: 100%;
    box-shadow: 0 18px 40px -10px rgba(15, 37, 69, 0.25), 0 6px 14px -4px rgba(15, 37, 69, 0.15);
    font-family: var(--display);
    overflow: hidden;
    display: flex; flex-direction: column;
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
    container-type: inline-size;
}
.cover:hover { transform: rotate(0deg) scale(1.02); }
.cover-spine {
    position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
    background: rgba(0, 0, 0, 0.18);
}
.cover-content {
    flex: 1; padding: 22px 22px 22px 28px;
    display: flex; flex-direction: column;
    position: relative;
}
.cover-top {
    font-size: 9px; letter-spacing: 2.5px; font-weight: 700; opacity: 0.7;
}
.cover-title {
    font-family: var(--display);
    margin-top: auto;
    line-height: 0.92;
    letter-spacing: -0.5px;
}
.cover-author {
    margin-top: 14px;
    font-size: 10px; letter-spacing: 2px; font-weight: 600;
    text-transform: uppercase;
}
/* Cover variants */
.cover.v-yellow { background: var(--yellow); color: var(--navy); }
.cover.v-yellow .cover-title { font-weight: 900; font-size: clamp(22px, 3.5cqi, 38px); }
.cover.v-yellow .cover-top::after {
    content: ""; display: block; width: 32px; height: 3px; background: var(--navy); margin-top: 8px;
}
.cover.v-navy { background: var(--navy); color: var(--paper); }
.cover.v-navy .cover-top { color: var(--yellow); }
.cover.v-navy .cover-title { font-weight: 800; font-size: clamp(20px, 3.2cqi, 36px); }
.cover.v-navy .cover-title em {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    color: var(--yellow); display: block;
}
.cover.v-paper { background: var(--paper); color: var(--navy); border: 1px solid var(--rule); }
.cover.v-paper .cover-title { font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(22px, 3.4cqi, 38px); }
.cover.v-ink { background: var(--ink); color: var(--yellow); }
.cover.v-ink .cover-title { font-weight: 900; font-size: clamp(20px, 3.4cqi, 36px); text-transform: uppercase; }

/* Decorative ornaments per variant */
.cover .ornament {
    position: absolute; right: 22px; top: 22px; width: 36px; height: 36px;
}

/* ── Meus livros grid ───────────────────────────────────────────────── */
.livros {
    padding: 120px 0;
    border-top: 1px solid var(--rule);
    overflow: hidden;
}
.livros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    margin-top: 60px;
}
.livros-grid > .livro-card {
    display: flex; flex-direction: column;
}
.livro-card .cover { height: auto; aspect-ratio: 2/3; margin-bottom: 18px; }
.livro-card .num {
    font-family: var(--display); font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; color: var(--navy-soft);
}
.livro-card h4 {
    font-family: var(--display); font-size: 19px; font-weight: 700;
    line-height: 1.15; letter-spacing: -0.3px; margin: 6px 0 8px;
}
.livro-card p {
    font-size: 14px; line-height: 1.55; color: var(--navy-mid);
    margin: 0 0 12px;
}
.livro-card .link {
    font-family: var(--display); font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--navy); border-bottom: 1.5px solid var(--yellow);
    padding-bottom: 2px; align-self: flex-start;
}
.livro-card .link:hover { color: var(--yellow-dark); }
@media (max-width: 1080px) { .livros-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .livros-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Próximos lançamentos ───────────────────────────────────────────── */
.proximos {
    padding: 100px 0;
    background: var(--ink);
    color: var(--paper);
}
.proximos h2 { color: var(--paper); }
.proximos .eyebrow { color: var(--yellow); }
.proximos .eyebrow::before { background: var(--yellow); }
.proximos-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 80px;
    align-items: end;
}
.proximos-grid h2 {
    font-size: 64px; font-weight: 800; letter-spacing: -1.5px; line-height: 0.95;
}
.proximos-grid p {
    font-family: var(--serif);
    font-size: 22px; line-height: 1.55;
    color: color-mix(in srgb, var(--paper) 78%, transparent);
    max-width: 580px;
}
.proximos-list {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.proximo-card {
    border-top: 1px solid rgba(245, 211, 61, 0.3);
    padding-top: 28px;
}
.proximo-card .badge {
    display: inline-block;
    font-family: var(--display); font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 4px 10px; background: var(--yellow); color: var(--navy);
    margin-bottom: 16px;
}
.proximo-card h4 {
    color: var(--paper); font-size: 26px; font-weight: 700;
    line-height: 1.15; margin-bottom: 12px;
    letter-spacing: -0.4px;
}
.proximo-card p {
    font-size: 15px; line-height: 1.5;
    color: color-mix(in srgb, var(--paper) 65%, transparent);
    margin: 0;
}

/* ── Meu pensamento sobre o Direito ─────────────────────────────────── */
.pensamento {
    padding: 140px 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.pensamento::before {
    content: ""; position: absolute;
    right: -120px; top: 80px;
    width: 380px; height: 380px;
    background: var(--yellow); opacity: 0.5;
    border-radius: 50%;
    z-index: 0;
}
.pensamento > * { position: relative; z-index: 1; }
.pensamento h2 {
    font-family: var(--display);
    font-size: 88px;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -2.5px;
    margin: 16px 0 60px;
    text-wrap: balance;
}
.pensamento h2 em {
    font-family: var(--serif); font-style: italic; font-weight: 500;
    color: var(--navy-mid);
}
.pensamento .essay {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.65;
    color: var(--navy);
    max-width: 740px;
}
.pensamento .essay > p {
    margin: 0 0 32px;
}
.pensamento .essay > p:first-of-type::first-letter {
    font-family: var(--display);
    font-weight: 900;
    font-size: 90px;
    float: left;
    line-height: 0.85;
    margin: 8px 14px -6px 0;
    color: var(--yellow-dark);
    text-shadow: 4px 4px 0 rgba(15, 37, 69, 0.06);
}
.pensamento .dimension {
    margin: 56px 0;
    padding: 36px 0;
    border-top: 2px solid var(--navy);
    border-bottom: 1px solid var(--rule);
}
.pensamento .dimension .dim-label {
    font-family: var(--display);
    font-size: 13px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--navy-soft);
    margin-bottom: 10px;
}
.pensamento .dimension h3 {
    font-family: var(--display);
    font-size: 40px; font-weight: 800; letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1;
}
.pensamento .pull {
    font-family: var(--display);
    font-style: normal;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    border-left: 4px solid var(--yellow);
    padding: 4px 0 4px 28px;
    margin: 48px 0;
    max-width: 720px;
    letter-spacing: -0.5px;
}
.pensamento .essay-conclusion {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    color: var(--navy);
    line-height: 1.35;
}

/* ── Conteúdos externos ─────────────────────────────────────────────── */
.conteudos {
    padding: 120px 0;
    background: var(--paper-cool);
    border-top: 1px solid var(--rule);
}
.conteudos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.platform {
    background: var(--paper);
    padding: 40px;
    border: 1px solid var(--rule);
    transition: border-color 0.2s;
    display: flex; flex-direction: column;
}
.platform:hover { border-color: var(--navy); }
.platform-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 18px;
}
.platform-head h3 {
    font-family: var(--display); font-size: 32px; font-weight: 800;
    letter-spacing: -0.8px; line-height: 1;
}
.platform-tag {
    font-family: var(--display); font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--navy-soft);
    border: 1px solid var(--rule);
    padding: 6px 10px;
}
.platform > p {
    font-size: 16px; line-height: 1.55; color: var(--navy-mid);
    margin: 0 0 28px;
}
.platform-links {
    margin-top: auto;
    display: flex; flex-direction: column;
}
.platform-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
    font-family: var(--display); font-size: 15px; font-weight: 500;
    color: var(--navy);
    transition: padding-left 0.15s;
}
.platform-link:last-child { border-bottom: 1px solid var(--rule); }
.platform-link:hover { padding-left: 8px; color: var(--yellow-dark); }
.platform-link .arrow {
    font-family: var(--body); font-size: 18px;
    opacity: 0.4;
    transition: opacity 0.15s, transform 0.15s;
}
.platform-link:hover .arrow { opacity: 1; transform: translateX(4px); }

/* ── Séries / vídeos ───────────────────────────────────────────────── */
.videos {
    padding: 120px 0;
    border-top: 1px solid var(--rule);
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}
.video-card {
    display: flex; flex-direction: column;
}
.video-thumb {
    aspect-ratio: 16/9;
    background: var(--navy);
    position: relative; overflow: hidden;
    margin-bottom: 18px;
    cursor: pointer;
}
.video-thumb .vt-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 100%);
}
.video-thumb .vt-num {
    position: absolute; left: 18px; top: 16px;
    font-family: var(--display); font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; color: var(--yellow);
}
.video-thumb .vt-play {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.video-thumb:hover .vt-play { transform: translate(-50%, -50%) scale(1.08); background: var(--paper); }
.video-thumb .vt-play::after {
    content: ""; width: 0; height: 0;
    border-left: 16px solid var(--navy);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}
.video-thumb .vt-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.video-card .num {
    font-family: var(--display); font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; color: var(--navy-soft);
}
.video-card h4 {
    font-family: var(--display); font-size: 20px; font-weight: 700;
    line-height: 1.2; letter-spacing: -0.3px; margin: 6px 0 8px;
}
.video-card p {
    font-size: 14px; line-height: 1.55; color: var(--navy-mid);
    margin: 0 0 12px;
}
.video-card a.link {
    font-family: var(--display); font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1.5px solid var(--yellow);
    padding-bottom: 2px; align-self: flex-start;
}
@media (max-width: 880px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .videos-grid { grid-template-columns: 1fr; } }

/* ── Podcasts ──────────────────────────────────────────────────────── */
.podcasts {
    padding: 120px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
}
.podcast-list {
    margin-top: 60px;
    display: flex; flex-direction: column;
}
.podcast-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid var(--rule);
    transition: padding-left 0.2s;
}
.podcast-row:last-child { border-bottom: 1px solid var(--rule); }
.podcast-row:hover { padding-left: 16px; }
.podcast-row .pn {
    font-family: var(--display); font-size: 14px; font-weight: 600;
    letter-spacing: 2px; color: var(--navy-soft);
}
.podcast-row .pt {
    font-family: var(--display); font-size: 26px; font-weight: 700;
    letter-spacing: -0.5px; line-height: 1.1;
}
.podcast-row .pd {
    font-family: var(--serif); font-size: 17px; font-style: italic;
    color: var(--navy-mid); line-height: 1.4;
}
.podcast-row a.btn { white-space: nowrap; }
@media (max-width: 880px) {
    .podcast-row { grid-template-columns: 40px 1fr; gap: 16px; }
    .podcast-row .pd, .podcast-row a.btn { grid-column: 2; }
}

/* ── CTA ───────────────────────────────────────────────────────────── */
.cta {
    padding: 140px 0;
    background: var(--yellow);
    color: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: ""; position: absolute;
    left: -200px; bottom: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--yellow-soft);
    z-index: 0;
}
.cta > * { position: relative; z-index: 1; }
.cta-inner {
    display: grid; grid-template-columns: 1fr auto; gap: 80px;
    align-items: end;
}
.cta .eyebrow { color: var(--navy); }
.cta .eyebrow::before { background: var(--navy); }
.cta h2 {
    font-family: var(--display);
    font-size: clamp(56px, 7vw, 108px);
    font-weight: 900; line-height: 0.92; letter-spacing: -3px;
    margin: 20px 0 0;
    text-wrap: balance;
}
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn {
    background: var(--navy); color: var(--paper); border-color: var(--navy);
}
.cta-actions .btn:hover {
    background: var(--paper); color: var(--navy); border-color: var(--navy);
}

/* ── Footer ────────────────────────────────────────────────────────── */
footer {
    background: var(--ink);
    color: color-mix(in srgb, var(--paper) 75%, transparent);
    padding: 80px 0 40px;
    font-family: var(--display);
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.foot-brand h3 {
    font-family: var(--display); font-size: 48px; font-weight: 900;
    color: var(--paper); letter-spacing: -1.5px;
    margin-bottom: 12px; line-height: 1;
}
.foot-brand p {
    font-family: var(--body); font-size: 15px; line-height: 1.55;
    max-width: 340px;
    color: color-mix(in srgb, var(--paper) 60%, transparent);
}
.foot-col h4 {
    color: var(--yellow); font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 18px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
    color: color-mix(in srgb, var(--paper) 80%, transparent);
    font-size: 15px;
    transition: color 0.15s;
}
.foot-col a:hover { color: var(--yellow); }
.foot-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(245, 211, 61, 0.2);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: color-mix(in srgb, var(--paper) 50%, transparent);
}
.foot-bottom .mark svg { width: 24px; height: 24px; }
@media (max-width: 880px) {
    .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Responsive */
@media (max-width: 1080px) {
    .hero-inner, .sobre-grid, .proximos-grid, .conteudos-grid, .cta-inner {
        grid-template-columns: 1fr; gap: 48px;
    }
    .destaque-item, .destaque-item:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
    .destaque-item:nth-child(even) .destaque-body { text-align: left; }
    .destaque-item:nth-child(even) .destaque-body p { margin-left: 0; }
    .destaque-item:nth-child(even) .destaque-body .destaque-cta { justify-content: flex-start; }
    .destaque-item:nth-child(even) .destaque-cover, .destaque-cover { max-width: 280px; }
    .proximos-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .wrap, .wrap-narrow { padding: 0 24px; }
    .hero { padding: 130px 0 80px; }
    .section-head h2 { font-size: 44px; }
    .pensamento h2 { font-size: 56px; letter-spacing: -1.5px; }
    .pensamento .dimension h3 { font-size: 28px; }
    .pensamento .pull { font-size: 22px; padding-left: 18px; }
    .hero h1 { font-size: 64px; letter-spacing: -2px; }
}
