:root {
  --blue-950: #031d4c;
  --blue-900: #06377e;
  --blue-800: #0b4aa2;
  --blue-700: #1260bf;
  --cyan: #00a7d7;
  --yellow: #ffd000;
  --lime: #dff000;
  --ink: #09224f;
  --muted: #65728a;
  --paper: #f7f9fd;
  --white: #fff;
  --line: #dce4f0;
  --shadow: 0 24px 70px rgba(5, 45, 104, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -80px; background: white; color: var(--ink); z-index: 999; padding: 10px 14px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 12px; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11,74,162,.08);
}
.topbar-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 190px; display: block; }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 750; letter-spacing: -.01em; }
.nav a { position: relative; padding: 30px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 22px; height: 3px; border-radius: 3px; background: linear-gradient(90deg,var(--yellow),var(--cyan)); transition: right .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--blue-900); margin: 5px 0; border-radius: 2px; }

.section-dark { background: var(--blue-950); color: white; }
.section-light { background: var(--paper); }
.section-blue { background: linear-gradient(135deg, #062f73 0%, #0754ad 55%, #036caa 100%); color: white; }
.section-yellow { background: linear-gradient(120deg, #ffe234 0%, #ffd000 48%, #dff000 100%); color: var(--blue-950); }

.hero { min-height: 860px; padding: 155px 0 70px; position: relative; overflow: hidden; display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 34px; align-items: center; position: relative; z-index: 2; }
.hero-copy { padding-bottom: 20px; }
.eyebrow { display: flex; align-items: center; gap: 10px; text-transform: uppercase; font-size: 13px; font-weight: 850; letter-spacing: .14em; color: #d9e7ff; }
.eyebrow span { width: 36px; height: 4px; border-radius: 10px; background: linear-gradient(90deg,var(--yellow),var(--cyan)); }
.hero h1 { max-width: 760px; margin: 24px 0 24px; font-size: clamp(54px, 6.6vw, 94px); line-height: .94; letter-spacing: -.065em; font-weight: 900; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 650px; font-size: 20px; line-height: 1.55; color: #c7d8f5; margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s, background .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(100deg,var(--yellow),#e5ed00); color: var(--blue-950); box-shadow: 0 16px 40px rgba(255,208,0,.18); }
.btn-ghost { border: 1px solid rgba(255,255,255,.32); color: white; background: rgba(255,255,255,.04); }
.candidate-chip { margin-top: 38px; display: inline-grid; grid-template-columns: auto auto; column-gap: 11px; row-gap: 0; align-items: baseline; padding: 14px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.06); }
.candidate-chip span { font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: .12em; color: #a9c1e7; }
.candidate-chip strong { grid-row: span 2; font-size: 42px; letter-spacing: -.06em; color: var(--yellow); line-height: 1; }
.candidate-chip small { font-size: 13px; font-weight: 800; color: white; }
.hero-portrait-wrap { display: flex; justify-content: center; align-items: flex-end; }
.portrait-card { width: min(500px, 100%); position: relative; border-radius: 44px 44px 20px 20px; overflow: hidden; background: linear-gradient(180deg, rgba(0,167,215,.46), rgba(6,55,126,.1)); box-shadow: 0 40px 90px rgba(0,0,0,.28); }
.portrait-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 22%, rgba(255,208,0,.33), transparent 32%); z-index: 1; pointer-events:none; mix-blend-mode: screen; }
.portrait-card img { position: relative; z-index: 0; width: 100%; }
.portrait-badge { position: absolute; left: 22px; top: 22px; z-index: 3; width: 112px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--yellow); color: var(--blue-950); font-size: 12px; line-height: 1.05; letter-spacing: .08em; transform: rotate(-7deg); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.portrait-badge strong { font-size: 19px; }
.portrait-line { height: 9px; position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg,var(--yellow),var(--cyan)); z-index: 4; }
.hero-number { position: absolute; right: -40px; bottom: -95px; font-size: clamp(260px, 34vw, 570px); font-weight: 950; letter-spacing: -.10em; line-height: .75; color: rgba(255,255,255,.035); user-select: none; }
.hero-glow { position:absolute; border-radius:50%; filter: blur(5px); pointer-events:none; }
.hero-glow-a { width:520px; height:520px; background:radial-gradient(circle,rgba(0,167,215,.22),transparent 68%); right:4%; top:12%; }
.hero-glow-b { width:390px; height:390px; background:radial-gradient(circle,rgba(255,208,0,.11),transparent 65%); left:-9%; bottom:-8%; }
.scroll-cue { position:absolute; bottom:25px; left:50%; width:32px; height:50px; border:1px solid rgba(255,255,255,.25); border-radius:20px; transform:translateX(-50%); display:flex; justify-content:center; padding-top:8px; z-index:5; }
.scroll-cue span { width:5px; height:9px; border-radius:8px; background:var(--yellow); animation: scrollcue 1.7s infinite ease-in-out; }
@keyframes scrollcue { 0%,100%{transform:translateY(0);opacity:.45} 50%{transform:translateY(16px);opacity:1} }

.bio { padding: 110px 0 120px; }
.bio-grid { display: grid; grid-template-columns: 180px minmax(0,1.2fr) minmax(0,1fr); gap: 32px 50px; align-items: start; }
.section-kicker { color: var(--blue-700); font-size: 13px; line-height: 1.2; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker.light { color: var(--yellow); }
.bio-title h2, .section-head h2, .social-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 66px); line-height: 1.02; letter-spacing: -.052em; font-weight: 900; }
.bio-text { grid-column: 2; padding-top: 8px; }
.bio-text p { font-size: 18px; line-height: 1.7; color: #4c5d79; margin: 0 0 18px; }
.bio-signature { margin-top: 32px; border-left: 5px solid var(--yellow); padding: 10px 0 10px 20px; font-weight: 850; color: var(--blue-900); font-size: 19px; }
.bio-facts { grid-column: 3; grid-row: 2 / span 2; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow); overflow: hidden; }
.bio-facts div { padding: 22px 24px; border-bottom: 1px solid var(--line); display: grid; gap: 6px; }
.bio-facts div:last-child { border-bottom: 0; }
.bio-facts span { color: #78859b; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.bio-facts strong { font-size: 17px; }

.connections { padding: 110px 0 125px; position: relative; overflow: hidden; }
.connections::after { content:"1025"; position:absolute; right:-65px; top:35px; font-size:280px; font-weight:950; letter-spacing:-.08em; color:rgba(255,255,255,.035); pointer-events:none; }
.section-head { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr); gap: 60px; align-items: end; margin-bottom: 54px; position: relative; z-index: 2; }
.section-head p { margin: 0; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.72); }
.section-head.dark p { color: #65728a; }
.section-head .section-kicker { margin-bottom: 14px; }
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; z-index: 2; }
.topic-card { min-height: 330px; padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); display:flex; flex-direction:column; transition: transform .25s, background .25s; }
.topic-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.13); }
.topic-index { font-size: 13px; letter-spacing: .13em; font-weight: 900; color: var(--yellow); }
.topic-card h3 { margin: auto 0 12px; font-size: 29px; line-height: 1; letter-spacing: -.035em; }
.topic-card p { margin: 0; color: #d5e3fa; line-height: 1.58; font-size: 15px; }

.tourism { padding: 115px 0 130px; }
.map-layout { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(330px,.7fr); gap: 26px; align-items: stretch; }
.map-card { background: white; border-radius: var(--radius-xl); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.map-stage { position: relative; overflow: hidden; aspect-ratio: 1; background: #cae300; }
.map-stage img { width:100%; height:100%; object-fit:cover; }
.map-stage::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.03); pointer-events:none; }
.map-focus { position:absolute; left:80%; top:51%; width:58px; height:58px; transform:translate(-50%,-50%); border-radius:50%; border:4px solid white; background:rgba(255,208,0,.34); box-shadow:0 0 0 8px rgba(0,64,160,.22), 0 8px 30px rgba(0,0,0,.22); cursor:default; transition:left .45s cubic-bezier(.2,.8,.2,1),top .45s cubic-bezier(.2,.8,.2,1); z-index:4; }
.map-focus::before { content:""; position:absolute; inset:8px; background:var(--blue-900); border-radius:50%; box-shadow:inset 0 0 0 5px var(--yellow); }
.map-source { padding: 14px 20px 18px; color:#6a7890; font-size:12px; }
.zones-panel { border-radius: var(--radius-xl); background: var(--blue-950); color:white; padding: 30px; display:flex; flex-direction:column; min-height: 100%; box-shadow: var(--shadow); }
.zone-active { padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 20px; }
.zone-count { color:var(--yellow); font-size:12px; font-weight:900; letter-spacing:.12em; }
.zone-active h3 { margin:10px 0 10px; font-size:31px; letter-spacing:-.04em; line-height:1.02; }
.zone-active p { margin:0; color:#b9cce9; line-height:1.55; font-size:14px; }
.zone-buttons { display:grid; gap:6px; overflow:auto; max-height: 570px; padding-right:5px; }
.zone-btn { width:100%; text-align:left; border:0; border-radius:12px; padding:11px 13px; color:#dbe7f8; background:transparent; cursor:pointer; font-size:14px; font-weight:700; transition:background .2s,color .2s,transform .2s; }
.zone-btn:hover, .zone-btn:focus-visible { background:rgba(255,255,255,.08); color:white; transform:translateX(3px); outline:none; }
.zone-btn.active { color:var(--blue-950); background:linear-gradient(90deg,var(--yellow),#e6ee00); }

.quote-band { padding: 100px 0; overflow:hidden; position:relative; }
.quote-band::before { content:""; position:absolute; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle,rgba(0,167,215,.19),transparent 68%); right:-120px; top:-160px; }
.quote-wrap { position:relative; text-align:center; max-width:1040px; }
.quote-mark { font-family:Georgia,serif; font-size:118px; line-height:.5; color:var(--yellow); opacity:.95; }
.quote-wrap p { margin:12px auto 20px; font-size:clamp(42px,6vw,84px); line-height:.96; font-weight:900; letter-spacing:-.06em; }
.quote-wrap strong { font-size:13px; letter-spacing:.18em; color:#bcd0ed; }

.materials { padding:110px 0 125px; }
.material-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.material-card { min-height:300px; padding:27px; border:1px solid var(--line); border-radius:var(--radius-lg); background:white; display:flex; flex-direction:column; box-shadow:0 12px 40px rgba(7,59,138,.07); transition:transform .25s,border-color .25s,box-shadow .25s; }
.material-card:hover { transform:translateY(-6px); border-color:#b4c6e2; box-shadow:var(--shadow); }
.material-tag { align-self:flex-start; padding:8px 10px; border-radius:999px; background:#edf4ff; color:var(--blue-800); font-size:10px; font-weight:900; letter-spacing:.13em; }
.material-card h3 { margin:auto 0 10px; font-size:28px; letter-spacing:-.04em; }
.material-card p { margin:0 0 22px; color:#66758d; line-height:1.6; font-size:14px; }
.material-action { font-size:13px; font-weight:850; color:var(--blue-800); border-top:1px solid var(--line); padding-top:16px; }

.social { padding:95px 0; }
.social-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:70px; align-items:center; }
.dark-kicker { color:var(--blue-900); }
.social-copy .section-kicker { margin-bottom:14px; }
.social-copy p { font-size:21px; font-weight:850; margin:25px 0 0; color:var(--blue-800); }
.social-links { border-top:2px solid rgba(3,29,76,.26); }
.social-links a { display:flex; justify-content:space-between; align-items:center; padding:20px 4px; border-bottom:1px solid rgba(3,29,76,.2); font-weight:850; font-size:18px; transition:padding .2s,background .2s; }
.social-links a:hover { padding-left:12px; }
.social-links strong { font-size:25px; }

.final-cta { padding:70px 0 76px; }
.final-cta-inner { display:grid; grid-template-columns:260px 1fr; gap:48px; align-items:center; }
.final-cta-inner img { width:100%; filter: drop-shadow(0 10px 20px rgba(0,0,0,.12)); }
.final-cta-inner > div { display:flex; justify-content:space-between; align-items:center; gap:30px; border-left:1px solid rgba(255,255,255,.2); padding-left:45px; }
.final-cta-inner p { margin:0; font-size:clamp(26px,3.5vw,54px); line-height:1; font-weight:900; letter-spacing:-.05em; max-width:700px; }
.final-cta-inner strong { color:var(--yellow); font-size:clamp(72px,10vw,150px); letter-spacing:-.08em; line-height:.8; }

.footer { background:#021431; color:#c7d6ee; padding:34px 0; font-size:12px; }
.footer-grid { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.footer strong { color:white; font-size:13px; }
.footer p { margin:5px 0 0; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:18px; }
.footer a:hover { color:white; }

.toast { position:fixed; z-index:200; left:50%; bottom:30px; transform:translate(-50%,30px); opacity:0; pointer-events:none; background:#021431; color:white; padding:12px 18px; border-radius:999px; font-size:13px; font-weight:800; box-shadow:0 12px 34px rgba(0,0,0,.2); transition:opacity .2s,transform .2s; }
.toast.show { opacity:1; transform:translate(-50%,0); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease,transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay { transition-delay:.12s; }
.reveal-delay-1 { transition-delay:.07s; }
.reveal-delay-2 { transition-delay:.14s; }
.reveal-delay-3 { transition-delay:.21s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1080px) {
  .hero { min-height:auto; }
  .hero-grid { grid-template-columns:1fr .82fr; }
  .cards-grid, .material-grid { grid-template-columns:repeat(2,1fr); }
  .map-layout { grid-template-columns:1fr; }
  .zone-buttons { max-height:330px; grid-template-columns:repeat(2,1fr); }
  .zones-panel { min-height:auto; }
  .bio-grid { grid-template-columns:150px 1fr; }
  .bio-title { grid-column:2; }
  .bio-text { grid-column:2; }
  .bio-facts { grid-column:2; grid-row:auto; display:grid; grid-template-columns:repeat(2,1fr); }
  .bio-facts div:nth-child(odd) { border-right:1px solid var(--line); }
  .final-cta-inner { grid-template-columns:210px 1fr; }
}

@media (max-width: 820px) {
  .topbar-inner { min-height:72px; }
  .brand { width:150px; }
  .menu-button { display:block; }
  .nav { position:absolute; top:72px; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; padding:10px 20px 20px; background:rgba(255,255,255,.98); border-bottom:1px solid var(--line); box-shadow:0 18px 35px rgba(0,0,0,.08); }
  .nav.open { display:flex; }
  .nav a { padding:14px 5px; }
  .nav a::after { display:none; }
  .hero { padding-top:118px; padding-bottom:80px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero h1 { font-size:clamp(52px,15vw,82px); max-width:690px; }
  .hero-lead { font-size:17px; }
  .hero-portrait-wrap { margin-top:22px; }
  .portrait-card { max-width:430px; }
  .hero-number { font-size:230px; right:-30px; bottom:0; }
  .bio, .connections, .tourism, .materials { padding-block:82px; }
  .bio-grid { grid-template-columns:1fr; }
  .bio-title,.bio-text,.bio-facts { grid-column:1; }
  .bio-facts { grid-template-columns:1fr 1fr; }
  .section-head { grid-template-columns:1fr; gap:20px; }
  .section-head p { max-width:650px; }
  .social-grid { grid-template-columns:1fr; gap:45px; }
  .final-cta-inner { grid-template-columns:1fr; text-align:center; }
  .final-cta-inner img { width:230px; margin:auto; }
  .final-cta-inner > div { border-left:0; border-top:1px solid rgba(255,255,255,.2); padding:30px 0 0; flex-direction:column; }
  .footer-grid { align-items:flex-start; flex-direction:column; }
  .footer-links { justify-content:flex-start; }
}

@media (max-width: 560px) {
  .container { width:min(calc(100% - 26px),var(--container)); }
  .hero { padding-top:104px; }
  .hero h1 { font-size:48px; line-height:.96; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn { width:100%; }
  .portrait-card { border-radius:30px 30px 18px 18px; }
  .portrait-badge { width:88px; left:14px; top:14px; }
  .candidate-chip strong { font-size:36px; }
  .bio-title h2,.section-head h2,.social-copy h2 { font-size:39px; }
  .bio-facts { grid-template-columns:1fr; }
  .bio-facts div:nth-child(odd) { border-right:0; }
  .cards-grid,.material-grid { grid-template-columns:1fr; }
  .topic-card { min-height:250px; }
  .map-card,.zones-panel { border-radius:22px; }
  .zones-panel { padding:22px; }
  .zone-buttons { grid-template-columns:1fr; max-height:none; }
  .quote-band { padding:76px 0; }
  .quote-wrap p { font-size:43px; }
  .social { padding:75px 0; }
  .final-cta { padding:60px 0; }
  .final-cta-inner strong { font-size:98px; }
}

/* Ajustes solicitados — versão 2 */
.brand { width: 245px; }
.hero-portrait-wrap { align-self: end; display: flex; justify-content: center; align-items: flex-end; min-width: 0; }
.portrait-free { width: min(500px, 100%); position: relative; filter: drop-shadow(0 32px 48px rgba(0,0,0,.28)); }
.portrait-free::before { content:""; position:absolute; z-index:-1; inset:10% -7% 2%; border-radius:50%; background:radial-gradient(circle at 50% 44%, rgba(0,167,215,.23), rgba(0,167,215,0) 68%); }
.portrait-free img { width:100%; height:auto; display:block; border:0; border-radius:0; box-shadow:none; -webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 91%,transparent 100%); mask-image:linear-gradient(to bottom,#000 0%,#000 91%,transparent 100%); }
.topic-index { font-size: clamp(46px, 4.7vw, 72px); line-height:.85; letter-spacing:-.065em; font-weight:950; color:var(--yellow); opacity:.98; }
.topic-card h3 { margin: auto 0 12px; }
.quote-wrap { display:grid; grid-template-columns:minmax(260px,390px) 1fr; align-items:center; gap:clamp(34px,6vw,85px); text-align:left; max-width:1180px; }
.quote-image img { width:100%; display:block; filter:drop-shadow(0 28px 50px rgba(0,0,0,.3)); }
.quote-copy { min-width:0; }
.quote-mark { margin-left:-4px; }
.quote-wrap p { margin:12px 0 20px; }
.social-icons { display:flex; justify-content:flex-end; align-items:center; gap:18px; }
.social-icon { width:94px; height:94px; border:2px solid rgba(3,29,76,.28); border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.15); transition:transform .22s,background .22s,border-color .22s; }
.social-icon:hover { transform:translateY(-5px); background:rgba(255,255,255,.42); border-color:var(--blue-900); }
.social-icon svg { width:44px; height:44px; fill:none; stroke:var(--blue-950); stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.footer { padding:42px 0; }
.footer-brand { display:flex; align-items:center; gap:25px; min-width:0; }
.footer-brand img { width:190px; height:auto; object-fit:contain; flex:0 0 auto; }
.footer-legal { min-width:0; }

@media (max-width: 820px) {
  .brand { width: 205px; }
  .quote-wrap { grid-template-columns:1fr; text-align:center; }
  .quote-image { width:min(330px,76vw); margin:0 auto; }
  .quote-mark { margin-left:0; }
  .quote-wrap p { margin-inline:auto; }
  .social-icons { justify-content:flex-start; }
  .footer-brand { align-items:flex-start; flex-direction:column; }
  .footer-brand img { width:170px; }
}

@media (max-width: 560px) {
  .brand { width: 178px; }
  .portrait-free { max-width:420px; }
  .topic-index { font-size:58px; }
  .social-icon { width:78px; height:78px; }
  .social-icon svg { width:36px; height:36px; }
}


/* Ajustes solicitados — versão 3 */
@media (min-width: 821px) {
  .topbar-inner { min-height: 96px; }
  .brand { width: 320px; }
  .nav a { padding-block: 37px; }
  .nav a::after { bottom: 28px; }

  .hero {
    min-height: 900px;
    padding: 220px 0 0;
    align-items: stretch;
  }
  .hero-grid {
    min-height: 750px;
    align-items: end;
  }
  .hero-copy {
    align-self: center;
    padding: 10px 0 94px;
  }
  .hero-portrait-wrap {
    align-self: end;
    height: 100%;
    align-items: flex-end;
  }
  .portrait-free {
    align-self: end;
  }
  .portrait-free img {
    margin-bottom: 0;
  }

  .quote-band {
    padding-top: 72px;
    padding-bottom: 0;
    overflow: hidden;
  }
  .quote-wrap {
    align-items: end;
    min-height: 610px;
  }
  .quote-image {
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  .quote-gege-photo {
    width: 100%;
    max-height: 610px;
    object-fit: contain;
    object-position: center bottom;
    margin-top: auto;
  }
  .quote-copy {
    align-self: center;
    padding-bottom: 72px;
  }
}

.quote-campaign-logo {
  width: min(300px, 70%);
  height: auto;
  object-fit: contain;
  margin: 0 0 20px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.16));
}
.quote-gege-photo {
  display: block;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.30));
}

.final-cta-inner > img {
  width: min(250px, 100%);
  justify-self: center;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.12));
}

@media (max-width: 820px) {
  .topbar-inner { min-height: 80px; }
  .brand { width: 230px; }
  .nav { top: 80px; }
  .hero { padding-top: 132px; }
  .hero-grid { align-items: end; }
  .hero-portrait-wrap { align-self: end; margin-bottom: -80px; }
  .hero { padding-bottom: 80px; }
  .quote-band { padding: 70px 0 0; overflow: hidden; }
  .quote-wrap { gap: 24px; }
  .quote-image { width: min(390px,88vw); margin: 0 auto; order: 2; align-self: end; }
  .quote-gege-photo { width: 100%; object-fit: contain; object-position: center bottom; }
  .quote-copy { order: 1; padding-bottom: 0; }
  .quote-campaign-logo { margin-inline: auto; }
}

@media (max-width: 560px) {
  .brand { width: 205px; }
  .hero { padding-top: 150px; }
  .hero-portrait-wrap { margin-bottom: -80px; }
  .quote-campaign-logo { width: min(260px,78%); }
}

/* Blog e PodGê */
.media-section,.podcast-section { padding:100px 0; scroll-margin-top:110px; }
.media-grid,.video-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px; }
.media-empty { border:1px solid var(--line);border-radius:24px;padding:45px;text-align:center;color:var(--muted);background:white; }
.media-card { background:white;border:1px solid var(--line);border-radius:24px;overflow:hidden; }
.media-card img { width:100%;aspect-ratio:16/10;object-fit:cover; }
.media-copy,.video-copy { padding:26px; }
.media-copy h3,.video-copy h3 { font-size:25px;line-height:1.2;margin:12px 0; }
.media-copy p { color:var(--muted);line-height:1.65; }
.media-copy a { color:var(--blue-800);font-weight:800; }
.podcast-section { background:#020f2d;color:white; }
.podcast-intro { display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1fr);gap:70px;align-items:center;margin-bottom:50px; }
.podcast-intro>img { width:100%;max-width:420px;height:auto;border-radius:24px; }
.podcast-intro h2 { font-size:clamp(38px,5vw,66px);line-height:1.04;letter-spacing:-.04em;margin:20px 0; }
.podcast-intro p { color:#bdcde5;line-height:1.7;margin-bottom:28px; }
.video-card { border:1px solid #233350;background:#0b1c3c;border-radius:22px;overflow:hidden;transition:transform .2s; }
.video-card:hover { transform:translateY(-5px); }
.video-cover { position:relative;aspect-ratio:16/9;background:#13294c;overflow:hidden; }
.video-cover img { width:100%;height:100%;object-fit:cover; }
.play-icon { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--yellow);color:#031d4c;width:56px;height:56px;border-radius:50%;display:grid;place-items:center; }
.video-copy>span { color:var(--yellow);font-size:11px;letter-spacing:.13em;font-weight:800; }
.video-copy p { color:#c7d6ee; }
.article-shell { max-width:850px;margin:0 auto;padding:150px 22px 80px;min-height:75vh; }
.article-shell h1 { font-size:clamp(34px,5vw,60px);line-height:1.1;overflow-wrap:anywhere; }
.article-shell img { width:100%;max-height:600px;object-fit:contain;border-radius:20px;margin:30px 0; }
.article-body { white-space:pre-wrap;font-size:19px;line-height:1.8;overflow-wrap:anywhere; }
.article-meta { color:var(--muted); }
a:focus-visible,button:focus-visible { outline:3px solid #00a7d7;outline-offset:5px; }
@media(min-width:821px) { .brand { width:250px;flex-shrink:0; } .nav { gap:18px; } .nav a { font-size:13px; } }
@media(max-width:1080px) and (min-width:821px) { .brand { width:190px; } .nav { gap:12px; } }
@media(max-width:820px) { .media-section,.podcast-section { padding:70px 0; } .podcast-intro { grid-template-columns:1fr;gap:30px; } .podcast-intro>img { max-width:320px;margin:auto; } .video-grid,.media-grid { grid-template-columns:1fr; } }

/* Página independente do blog */
.blog-listing { padding-top:160px;min-height:75vh; }
.blog-back { display:inline-block;margin-bottom:36px;color:var(--blue-800);font-weight:700; }
.blog-listing h1 { font-size:clamp(42px,6vw,72px);letter-spacing:-.045em;line-height:1.05;margin:12px 0 0; }
.media-home-link { display:flex;align-items:center;justify-content:space-between;gap:36px; }
.media-home-link h2 { font-size:clamp(36px,5vw,60px);letter-spacing:-.04em;margin:14px 0; }
.media-home-link p { color:var(--muted);line-height:1.6; }
.media-home-link .btn { flex-shrink:0; }
.nav a[aria-current="page"] { color:var(--blue-800);text-decoration:underline;text-underline-offset:8px; }
@media(max-width:820px) { .blog-listing { padding-top:130px; } .media-home-link { flex-direction:column;align-items:flex-start; } }

/* Projetos */
.project-listing { padding-top:155px;padding-bottom:90px; }
.project-listing>h1 { font-size:clamp(46px,6vw,76px);letter-spacing:-.05em;margin:16px 0; }
.project-intro { max-width:700px;font-size:20px;color:var(--muted);line-height:1.65;margin-bottom:45px; }
.project-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px; }
.project-card { padding:36px;background:white;border:1px solid var(--line);border-radius:24px;display:flex;flex-direction:column;align-items:flex-start; }
.project-number { font-size:46px;font-weight:900;color:var(--blue-800);letter-spacing:-.05em; }
.project-card h2 { font-size:30px;line-height:1.15;letter-spacing:-.025em;margin:24px 0 12px; }
.project-card p { color:var(--muted);line-height:1.7;margin:0 0 30px; }
.project-read { margin-top:auto;font-weight:800;color:var(--blue-800); }
.project-card a:hover { text-decoration:underline; }
.project-article { max-width:900px;margin:auto;padding:150px 24px 90px; }
.project-article h1 { font-size:clamp(32px,4.5vw,54px);line-height:1.12;letter-spacing:-.035em;margin:20px 0 24px; }
.project-lead { font-size:22px;line-height:1.6;color:var(--muted);border-bottom:1px solid var(--line);padding-bottom:30px;margin-bottom:32px; }
.project-body { font-size:18px;line-height:1.85;color:#4c5d79; }
.project-body h2 { font-size:28px;color:var(--ink);line-height:1.25;margin-top:40px; }
.project-body blockquote { margin:30px 0;padding:8px 24px;border-left:4px solid var(--cyan);background:#edf4ff;color:var(--ink); }
.project-article>.btn { margin-top:28px; }
@media(min-width:821px) and (max-width:1200px) { .topbar-inner { gap:15px; } .brand { width:190px; } .nav { gap:11px; } .nav a { font-size:12px; } }
@media(max-width:820px) { .project-grid { grid-template-columns:1fr; } .project-listing,.project-article { padding-top:120px; } .project-card { padding:28px; } }
