@charset "UTF-8";
:root {
  --accent-green: #0b8f50;
  --blue: #075444;
  --blue-deep: #043b32;
  --blue-ink: #022d26;
  --lime: #e4c07b;
  --lime-bright: #f2d49b;
  --ink: #081a17;
  --paper: #f7f2e9;
  --white: #ffffff;
  --line: rgba(7, 21, 36, 0.16);
  --shadow: 0 28px 70px rgba(4, 59, 50, 0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
html.menu-open { overflow: hidden; }
body.menu-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 16px; background: white; color: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.campaign-ribbon { height: 34px; overflow: hidden; background: var(--lime); color: var(--blue-ink); font-size: 12px; font-weight: 900; letter-spacing: .17em; white-space: nowrap; }
.ribbon-track { display: flex; width: max-content; align-items: center; height: 100%; gap: 24px; animation: ticker 24s linear infinite; }
.ribbon-track i { width: 7px; height: 7px; background: var(--blue); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-33.33%); } }

.site-header { position: fixed; z-index: 100; top: 34px; left: 0; width: 100%; color: white; transition: .3s ease; }
.site-header.scrolled { top: 0; background: rgba(4, 59, 50, .96); border-bottom: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(18px); }
.nav-shell { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; line-height: 1; }
.brand-check { color: var(--lime); font: 44px/.6 "Anton", sans-serif; transform: rotate(-8deg); }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy b { font: 26px/.95 "Anton", sans-serif; letter-spacing: .025em; }
.brand-copy small { margin-top: 6px; font-size: 8px; font-weight: 800; letter-spacing: .31em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; opacity: .88; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; width: 0; height: 2px; left: 0; bottom: -7px; background: var(--lime); transition: width .2s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after { width: 100%; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--lime); color: var(--blue-ink); font-weight: 900; }
.nav-cta span { margin-left: 14px; }
.menu-toggle { display: none; border: 0; background: none; width: 46px; height: 46px; border-radius: 50%; padding: 13px 10px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: white; transition: .25s ease; }

.hero { position: relative; min-height: 820px; padding-top: 142px; color: white; background: linear-gradient(130deg, var(--blue-deep) 0%, var(--blue) 58%, #0b6a54 100%); overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 110px; background: linear-gradient(to top, rgba(2,45,38,.42), transparent); }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 52px 52px; mask-image: linear-gradient(to right, black, transparent 72%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; right: -120px; top: 100px; }
.orbit-two { width: 760px; height: 760px; right: -220px; top: 0; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; min-height: 570px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.eyebrow > span { width: 34px; height: 3px; background: var(--lime); }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: var(--lime); }
h1, h2 { margin: 0; font-family: "Anton", Impact, sans-serif; font-weight: 400; text-transform: uppercase; line-height: .9; letter-spacing: -.025em; }
h1 { font-size: clamp(76px, 9vw, 138px); }
h1 em, h2 em { color: var(--lime); font-style: normal; }
.hero-intro { max-width: 500px; margin: 30px 0 34px; color: rgba(255,255,255,.83); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 14px 22px; border-radius: 4px; font-size: 14px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--lime); color: var(--blue-ink); box-shadow: 0 16px 30px rgba(228,192,123,.18); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: white; }
.hero-visual { position: relative; align-self: stretch; min-height: 610px; }
.portrait-frame { position: absolute; z-index: 2; width: min(520px, 82%); aspect-ratio: 1; right: 4%; bottom: 0; border-radius: 52% 52% 18% 18%; overflow: hidden; border: 7px solid rgba(255,255,255,.11); box-shadow: var(--shadow); background: #eadcc4; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.number-backdrop { position: absolute; z-index: 1; right: -3%; top: 8%; color: var(--lime); font: clamp(120px, 17vw, 230px)/.8 "Anton", sans-serif; letter-spacing: -.055em; opacity: .94; transform: rotate(-5deg); text-shadow: 0 22px 45px rgba(2,45,38,.22); }
.hero-tag { position: absolute; z-index: 4; padding: 15px 18px; box-shadow: 0 16px 44px rgba(2,45,38,.24); }
.hero-tag small { display: block; margin-bottom: 5px; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.hero-tag strong { display: block; font: 20px/1.05 "Anton", sans-serif; letter-spacing: .025em; }
.tag-role { left: 0; bottom: 132px; background: white; color: var(--blue-ink); transform: rotate(-2deg); }
.tag-state { right: -10px; top: 40%; display: flex; align-items: center; gap: 10px; background: var(--lime); color: var(--blue-ink); transform: rotate(3deg); }
.mini-check { font-size: 32px; }
.hero-bottom { position: relative; z-index: 5; min-height: 88px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 26px; text-align: center; }
.hero-bottom p { margin: 0 0 28px; font-size: 11px; font-weight: 900; letter-spacing: .24em; }
.hero-bottom strong { position: relative; top: 20px; color: white; font: 74px/.8 "Anton", sans-serif; letter-spacing: -.04em; }
.hero-bottom strong span { color: var(--lime); }

.identity-strip { background: var(--lime); border-bottom: 1px solid rgba(2,45,38,.2); }
.identity-grid { min-height: 92px; display: grid; grid-template-columns: repeat(4, 1fr); }
.identity-grid span { display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid rgba(2,45,38,.17); color: var(--blue-ink); font: 20px "Anton", sans-serif; text-transform: uppercase; letter-spacing: .035em; }
.identity-grid span:first-child { border-left: 1px solid rgba(2,45,38,.17); }
.identity-grid b { font: 11px "Manrope", sans-serif; opacity: .55; }
.section { padding: 120px 0; }
.section-heading h2, .trajectory h2, .news h2, .social h2 { font-size: clamp(58px, 7vw, 98px); color: var(--blue-ink); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: start; }
.about-content { padding-top: 50px; max-width: 630px; }
.about-content .lead { margin-top: 0; color: var(--blue-ink); font-size: 24px; font-weight: 700; line-height: 1.45; }
.about-content > p:not(.lead) { color: #50645f; }
.text-link { display: inline-flex; gap: 20px; margin-top: 16px; padding-bottom: 5px; color: var(--blue); border-bottom: 2px solid var(--blue); font-weight: 900; }
.about-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-numbers article { display: flex; align-items: center; gap: 13px; padding: 24px 16px 24px 0; border-right: 1px solid var(--line); }
.about-numbers article:last-child { padding-left: 16px; border-right: 0; }
.about-numbers strong { color: var(--blue); font: 44px "Anton", sans-serif; }
.about-numbers span { font-size: 12px; font-weight: 800; line-height: 1.25; text-transform: uppercase; letter-spacing: .06em; }

.trajectory { color: white; background: var(--blue-ink); }
.trajectory-head, .news-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.trajectory h2, .news h2 { color: white; }
.trajectory-intro { width: min(440px, 100%); }
.trajectory-intro > p { margin: 0 0 22px; color: rgba(255,255,255,.68); font-size: 18px; }
.assembly-photo { position: relative; height: 154px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.assembly-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.85) contrast(1.04); }
.assembly-photo figcaption { position: absolute; left: 12px; bottom: 10px; padding: 6px 8px; color: var(--blue-ink); background: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 84px; }
.timeline::before { content: ""; position: absolute; top: 21px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--lime), rgba(228,192,123,.18)); }
.timeline article { position: relative; padding: 61px 28px 0 0; }
.timeline article::before { content: ""; position: absolute; top: 14px; left: 0; width: 14px; height: 14px; border: 5px solid var(--blue-ink); border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 1px var(--lime); }
.timeline span { color: var(--lime); font: 26px "Anton", sans-serif; }
.timeline h3 { margin: 8px 0 8px; font-size: 16px; text-transform: uppercase; }
.timeline p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.55; }

.priorities { background: #f0e8dc; }
.priorities-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.priorities-head > p { max-width: 390px; margin-bottom: 10px; color: #50645f; }
.filters { display: flex; gap: 8px; margin: 54px 0 30px; flex-wrap: wrap; }
.filter { min-height: 43px; padding: 9px 17px; border: 1px solid rgba(2,45,38,.18); border-radius: 999px; background: transparent; color: var(--blue-ink); font: 800 13px "Manrope", sans-serif; cursor: pointer; }
.filter:hover, .filter.active { border-color: var(--blue); background: var(--blue); color: white; }
.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.priority-card { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 30px; color: var(--blue-ink); background: white; transition: transform .3s ease, opacity .25s ease; }
.priority-card:hover { transform: translateY(-8px); }
.priority-card.hidden { display: none; }
.priority-card.lime { background: var(--lime); }
.priority-card.blue { color: white; background: var(--blue); }
.card-index { position: absolute; top: 24px; left: 28px; font-size: 12px; font-weight: 900; opacity: .55; }
.priority-card:hover .card-icon { transform: rotate(20deg); }
.priority-card h3 { max-width: 290px; margin: 0 0 16px; font: 32px/.98 "Anton", sans-serif; letter-spacing: .01em; }
.priority-card p { margin: 0 0 28px; color: inherit; opacity: .7; font-size: 14px; line-height: 1.65; }
.priority-card small { font-size: 10px; font-weight: 900; letter-spacing: .18em; }

.news { color: white; background: var(--blue); }
.button-outline { border: 1px solid rgba(255,255,255,.3); color: white; }
.news-list { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.22); }
.news-list a { display: grid; grid-template-columns: 150px 1fr 55px; align-items: center; gap: 30px; min-height: 116px; border-bottom: 1px solid rgba(255,255,255,.22); transition: background .2s ease, padding .2s ease; }
.news-list a:hover { padding-inline: 16px; background: rgba(255,255,255,.06); }
.news-list span { color: var(--lime); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.news-list h3 { margin: 0; font-size: 22px; line-height: 1.3; }
.news-list b { color: var(--lime); font-size: 26px; text-align: right; }

.social { background: var(--lime); }
.social-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 9vw; align-items: center; }
.social-phone { position: relative; max-width: 380px; margin-inline: auto; }
.phone-frame { position: relative; z-index: 2; overflow: hidden; padding: 10px; border-radius: 32px; background: #07101a; box-shadow: 26px 34px 0 var(--blue), 0 35px 80px rgba(2,45,38,.28); transform: rotate(-3deg); }
.phone-frame img { width: 100%; aspect-ratio: 9/16; object-fit: cover; object-position: center top; border-radius: 22px; }
.phone-bar { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; color: white; font-size: 12px; }
.phone-bar span:first-child { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.social-stamp { position: absolute; z-index: 3; right: -70px; bottom: 54px; width: 140px; height: 140px; display: grid; place-items: center; padding: 26px; border-radius: 50%; background: white; color: var(--blue); font: 22px/1 "Anton", sans-serif; text-align: center; transform: rotate(8deg); }
.social-stamp span { position: absolute; right: 14px; top: 13px; }
.social-copy > p:not(.eyebrow) { max-width: 560px; font-size: 19px; color: rgba(2,45,38,.78); }
.social-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 34px; }
.button-dark { grid-column: 1/-1; color: white; background: var(--blue-ink); }
.social-link { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 12px 16px; border-bottom: 1px solid rgba(2,45,38,.25); color: var(--blue-ink); font-size: 14px; font-weight: 900; }

.final-cta { position: relative; padding: 110px 0 120px; overflow: hidden; color: white; text-align: center; background: radial-gradient(circle at 50% 20%, #0c705a 0, var(--blue) 36%, var(--blue-deep) 100%); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.final-cta::before { left: -220px; top: -180px; }
.final-cta::after { right: -220px; bottom: -240px; }
.final-inner { position: relative; z-index: 1; }
.final-mark { font-weight: 900; letter-spacing: .08em; }
.final-mark span, .final-mark em { color: var(--lime); font-style: normal; }
.final-cta h2 { margin-top: 20px; color: white; font-size: clamp(92px, 16vw, 220px); line-height: .8; }
.final-number { color: var(--lime); font: clamp(100px, 19vw, 260px)/.82 "Anton", sans-serif; letter-spacing: -.05em; }
.final-number span { color: white; }
.final-cta p { margin: 18px 0 34px; font-size: 12px; font-weight: 900; letter-spacing: .24em; }
.button-white { color: var(--blue-ink); background: white; }

.site-footer { padding: 38px 0; color: rgba(255,255,255,.66); background: #022921; }
.footer-grid { display: grid; grid-template-columns: .7fr 1.6fr .7fr; gap: 40px; align-items: center; }
.footer-brand { display: flex; flex-direction: column; color: white; font: 20px/1 "Anton", sans-serif; }
.footer-brand strong { margin-top: 6px; color: var(--lime); font-size: 36px; }
.site-footer p { margin: 0; font-size: 12px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; color: white; font-size: 12px; font-weight: 800; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .shell { width: min(100% - 32px, 760px); }
  .menu-toggle { display: block; position: relative; }
  .main-nav { position: fixed; inset: 0; z-index: 101; height: 100dvh; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 112px 30px calc(32px + env(safe-area-inset-bottom, 0px)); background: linear-gradient(168deg, var(--blue-deep) 0%, var(--blue-ink) 64%, #011c17 100%); transform: translateX(100%); transition: transform .35s ease; overflow-y: auto; overscroll-behavior: contain; font: clamp(30px, 8.2vw, 40px)/1.16 "Anton", sans-serif; text-transform: uppercase; }
  .main-nav > a:not(.nav-cta) { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 2px; opacity: 1; border-bottom: 1px solid rgba(255,255,255,.13); }
  nav.main-nav > a:not(.nav-cta)::after,
  nav.main-nav > a[data-nav].active::after,
  nav.main-nav > a:hover::after { content: ""; position: static; flex: 0 0 auto; width: 8px; height: 8px; background: var(--lime); transform: rotate(45deg); transition: opacity .2s ease; }
  nav.main-nav > a:not(.nav-cta)::after { opacity: 0; }
  .main-nav > a[data-nav].active { color: var(--lime); }
  nav.main-nav > a[data-nav].active::after { opacity: 1; }
  .main-nav::after { content: "HELEN SOARES 4343 · A VOZ DO INTERIOR"; margin-top: auto; padding-top: 30px; color: rgba(255,255,255,.42); font: 800 10px/1.7 "Manrope", Arial, sans-serif; letter-spacing: .2em; }
  .main-nav.open { transform: none; }
  .main-nav .nav-cta { margin-top: 28px; justify-content: center; font: 16px "Manrope", Arial, sans-serif; }
  .brand { position: relative; z-index: 103; }
  .menu-toggle { z-index: 103; }
  body.menu-open .site-header { top: 0; z-index: 300; background: transparent; border-bottom: 0; backdrop-filter: none; -webkit-backdrop-filter: none; transition: none; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 5; }
  .hero-visual { min-height: 590px; margin-top: -20px; }
  .portrait-frame { right: 5%; width: 73%; }
  .number-backdrop { top: 15%; right: 1%; }
  .tag-role { left: 5%; }
  .hero-bottom { margin-top: -25px; }
  .identity-grid { grid-template-columns: 1fr 1fr; }
  .identity-grid span { min-height: 70px; border-bottom: 1px solid rgba(2,45,38,.17); }
  .about-layout, .social-layout { grid-template-columns: 1fr; gap: 55px; }
  .about-content { padding-top: 0; }
  .trajectory-head, .priorities-head, .news-head { align-items: flex-start; flex-direction: column; }
  .timeline { grid-template-columns: 1fr; margin-top: 54px; }
  .timeline::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(var(--lime), rgba(228,192,123,.18)); }
  .timeline article { padding: 0 0 42px 48px; }
  .timeline article::before { top: 4px; }
  .priority-grid { grid-template-columns: 1fr 1fr; }
  .social-phone { order: 2; }
  .social-copy { order: 1; }
  .footer-grid { grid-template-columns: 1fr 2fr; }
  .footer-links { grid-column: 1/-1; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 520px); }
  .campaign-ribbon { height: 30px; }
  .site-header { top: 30px; }
  .nav-shell { min-height: 72px; }
  .brand-copy b { font-size: 22px; }
  .section { padding: 84px 0; }
  .hero { padding-top: 118px; }
  .hero-layout { min-height: auto; }
  h1 { font-size: clamp(68px, 24vw, 104px); }
  .hero-intro { margin-block: 22px 26px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 470px; margin-top: 8px; }
  .portrait-frame { width: 86%; right: -2%; }
  .number-backdrop { top: 12%; right: -10%; font-size: 35vw; }
  .hero-tag strong { font-size: 16px; }
  .tag-role { left: 0; bottom: 92px; }
  .tag-state { right: -10px; top: 47%; padding: 12px; }
  .tag-state strong { font-size: 14px; }
  .tag-state .mini-check { font-size: 23px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 0; padding-bottom: 32px; }
  .hero-bottom p { display: none; }
  .hero-bottom strong { top: 0; font-size: 64px; }
  .identity-grid span { justify-content: flex-start; padding-left: 16px; font-size: 16px; }
  .section-heading h2, .trajectory h2, .news h2, .social h2 { font-size: clamp(52px, 18vw, 76px); }
  .about-content .lead { font-size: 20px; }
  .about-numbers { grid-template-columns: 1fr; }
  .about-numbers article, .about-numbers article:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-numbers article:last-child { border-bottom: 0; }
  .priorities-head { gap: 25px; }
  .filters { margin-top: 40px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .filter { flex: 0 0 auto; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card { min-height: 330px; }
  .news-head .button { width: auto; }
  .news-list a { grid-template-columns: 1fr 34px; gap: 10px; padding-block: 26px; }
  .news-list span { grid-column: 1/-1; }
  .news-list h3 { font-size: 18px; }
  .social-phone { width: calc(100% - 66px); }
  .social-stamp { right: -26px; bottom: 32px; width: 106px; height: 106px; padding: 20px; font-size: 17px; }
  .social-actions { grid-template-columns: 1fr; }
  .button-dark { grid-column: auto; }
  .final-cta { padding: 86px 0; }
  .final-cta p { font-size: 10px; letter-spacing: .14em; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { grid-column: auto; }
}

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

/* Multi-page campaign site */
.main-nav a[data-nav].active::after { width: 100%; }
.inner-header { background: rgba(4, 59, 50, .96); border-bottom: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(18px); }
.inner-body .site-header.scrolled { top: 0; }

.site-gateway { background: #f0e8dc; }
.gateway-heading h2 { font-size: clamp(54px, 6.5vw, 92px); color: var(--blue-ink); }
.gateway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.gateway-card { position: relative; min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 28px; color: var(--blue-ink); background: white; transition: transform .3s ease, box-shadow .3s ease; }
.gateway-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(2,45,38,.12); }
.gateway-card > span { font-size: 12px; font-weight: 900; opacity: .45; }
.gateway-card small { font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.gateway-card h3 { margin: 12px 0 18px; font: 46px/.92 "Anton", sans-serif; text-transform: uppercase; }
.gateway-card p { margin: 0; opacity: .7; font-size: 14px; }
.gateway-card > b { position: absolute; top: 26px; right: 26px; padding-bottom: 4px; border-bottom: 2px solid currentColor; font-size: 11px; font-weight: 900; letter-spacing: .16em; opacity: .75; transition: opacity .25s ease; }
.gateway-card:hover > b { opacity: 1; }
.gateway-lime { background: var(--lime); }
.gateway-blue { color: white; background: var(--blue); }

.home-story { background: white; }
.home-story-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 9vw; }
.home-story-photo { position: relative; min-height: 630px; overflow: hidden; background: var(--blue); box-shadow: 24px 24px 0 var(--lime); }
.home-story-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center; }
.home-story-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(2,45,38,.78)); }
.home-story-photo span { position: absolute; z-index: 2; left: 25px; bottom: 24px; color: white; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.home-story-copy h2 { color: var(--blue-ink); font-size: clamp(58px, 6vw, 88px); }
.home-story-copy > p:not(.eyebrow) { margin: 28px 0; color: #50645f; font-size: 18px; }

.home-agenda { color: white; background: var(--blue-ink); }
.home-agenda h2 { color: white; font-size: clamp(58px, 7vw, 98px); }
.agenda-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.agenda-preview { position: relative; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: var(--blue-ink); background: white; transition: transform .3s ease; }
.agenda-preview:hover { transform: translateY(-8px); }
.agenda-preview > span { position: absolute; top: 24px; left: 26px; font-size: 11px; font-weight: 900; opacity: .48; }
.agenda-preview h3 { max-width: 290px; margin: 0 0 13px; font: 34px/1 "Anton", sans-serif; text-transform: uppercase; }
.agenda-preview p { margin: 0; opacity: .68; font-size: 14px; }
.agenda-preview b { position: absolute; top: 26px; right: 26px; padding-bottom: 4px; border-bottom: 2px solid currentColor; font-size: 11px; font-weight: 900; letter-spacing: .16em; opacity: .75; transition: opacity .25s ease; }
.agenda-preview:hover b { opacity: 1; }
.agenda-preview.lime { background: var(--lime); }
.home-connect { padding: 95px 0; color: white; background: var(--blue); }
.home-connect-inner { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; }
.home-connect h2 { color: white; font-size: clamp(58px, 7vw, 98px); }
.home-connect-inner > div:last-child p { margin: 0 0 25px; color: rgba(255,255,255,.76); font-size: 18px; }

.institutional-footer { padding: 0; }
.footer-main { display: grid; grid-template-columns: 1.1fr .7fr .8fr 1.15fr; gap: 55px; padding-top: 60px; padding-bottom: 46px; }
.footer-brand small { margin-top: 7px; color: rgba(255,255,255,.5); font: 8px "Manrope", sans-serif; letter-spacing: .24em; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-nav p, .footer-legal p { margin: 0 0 10px; color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.footer-nav a { color: rgba(255,255,255,.72); font-size: 13px; transition: color .2s ease; }
.footer-nav a:hover { color: white; }
.footer-legal span { display: block; color: white; font-size: 13px; font-weight: 800; }
.footer-legal span i { display: inline-block; width: 130px; height: 15px; border-bottom: 1px solid rgba(255,255,255,.28); }
.footer-legal small { display: block; margin-top: 14px; color: rgba(255,255,255,.44); font-size: 10px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom strong { color: var(--lime); }

.page-hero { position: relative; min-height: 720px; padding: 170px 0 72px; color: white; overflow: hidden; background: linear-gradient(130deg, var(--blue-deep), var(--blue) 60%, #0b6a54); }
.page-hero-grid { position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 52px 52px; }
.page-hero-layout { position: relative; z-index: 1; min-height: 475px; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 7vw; }
.page-hero-copy h1, .page-hero-simple h1 { font-size: clamp(72px, 9vw, 130px); }
.page-hero-copy > p:last-child, .page-hero-simple > p:last-child { max-width: 630px; color: rgba(255,255,255,.74); font-size: 18px; }
.page-breadcrumb { display: flex; gap: 12px; margin: 0 0 44px; color: rgba(255,255,255,.57); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.page-breadcrumb a:hover { color: var(--lime); }
.page-portrait { position: relative; align-self: end; min-height: 470px; }
.page-portrait img { position: absolute; z-index: 2; right: 0; bottom: 0; width: min(450px, 100%); aspect-ratio: 1; object-fit: cover; border-radius: 50% 50% 12px 12px; box-shadow: var(--shadow); }
.page-portrait .page-number { position: absolute; z-index: 1; top: 10px; right: -4%; color: var(--lime); font: 145px/.8 "Anton", sans-serif; letter-spacing: -.06em; transform: rotate(-5deg); }
.page-portrait > span { position: absolute; z-index: 3; right: -15px; bottom: 22px; padding: 11px 14px; color: var(--blue-ink); background: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.page-hero-simple { position: relative; z-index: 1; padding-top: 30px; }
.priorities-page-hero { min-height: 650px; }

.biography { background: white; }
.biography-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 9vw; }
.bio-side { padding: 28px; color: white; background: var(--blue); }
.bio-side > span { display: block; margin-bottom: 70px; color: var(--lime); font: 25px/1.05 "Anton", sans-serif; }
.bio-side > div { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.bio-side b { color: var(--lime); font: 38px "Anton", sans-serif; }
.bio-side small { font-size: 9px; font-weight: 900; letter-spacing: .12em; line-height: 1.4; }
.bio-text h2, .career h2, .work-method h2, .profile-feature h2, .agenda-details h2, .agenda-source h2, .join-section h2, .channel-section h2, .instagram-feature h2, .campaign-contact h2 { color: var(--blue-ink); font-size: clamp(55px, 6.5vw, 90px); }
.bio-text .lead { color: var(--blue-ink); font-size: 22px; font-weight: 700; }
.bio-text > p:not(.eyebrow):not(.lead) { color: #50645f; }
.career { color: white; background: var(--blue-ink); }
.career h2 { color: white; }
.career-list { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.18); }
.career-list article { display: grid; grid-template-columns: 150px 1fr; gap: 35px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.career-list article > b { color: var(--lime); font: 52px "Anton", sans-serif; }
.career-list small { color: rgba(255,255,255,.45); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.career-list h3 { margin: 3px 0; font: 28px "Anton", sans-serif; text-transform: uppercase; }
.career-list p { margin: 0; color: rgba(255,255,255,.62); }
.work-method { background: #f0e8dc; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.method-grid article { min-height: 270px; padding: 28px; background: white; }
.method-grid span { color: var(--blue); font-size: 11px; font-weight: 900; }
.method-grid h3 { margin: 72px 0 10px; color: var(--blue-ink); font: 34px "Anton", sans-serif; }
.method-grid p { margin: 0; color: #687a75; font-size: 14px; }
.profile-feature { padding: 110px 0; color: white; background: var(--blue); }
.profile-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; }
.profile-feature-photo { position: relative; min-height: 500px; overflow: hidden; box-shadow: 22px 22px 0 var(--lime); }
.profile-feature-photo img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.profile-feature-photo span { position: absolute; z-index: 2; left: 20px; bottom: 20px; padding: 7px 9px; color: var(--blue-ink); background: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.profile-feature h2 { color: white; }
.profile-feature-copy > p:not(.eyebrow) { margin: 24px 0; color: rgba(255,255,255,.7); }

.agenda-index { background: var(--lime); }
.agenda-index-inner { min-height: 82px; display: flex; align-items: center; gap: 40px; }
.agenda-index-inner > p { flex: 0 0 auto; color: var(--blue-ink); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.agenda-index-inner > div { display: flex; min-width: 0; max-width: 100%; gap: 26px; overflow-x: auto; }
.agenda-index-inner a { flex: 0 0 auto; color: var(--blue-ink); font-size: 13px; font-weight: 900; }
.agenda-details { background: #f0e8dc; }
.agenda-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.agenda-intro > p { color: #5d706b; }
.agenda-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 60px; }
.agenda-detail { min-height: 480px; display: flex; flex-direction: column; padding: 30px; scroll-margin-top: 110px; color: var(--blue-ink); background: white; }
.agenda-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 72px; }
.agenda-detail-top span { font-size: 11px; font-weight: 900; opacity: .5; }
.agenda-detail-top b { flex: 0 1 auto; min-width: 0; font: 900 11px/1 "Manrope", Arial, sans-serif; letter-spacing: .16em; opacity: .55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agenda-detail > small { font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.agenda-detail h3 { max-width: 480px; margin: 10px 0 16px; font: 38px/1 "Anton", sans-serif; }
.agenda-detail > p { margin: 0; opacity: .72; font-size: 14px; }
.agenda-detail ul { margin: auto 0 0; padding: 22px 0 0; list-style: none; border-top: 1px solid rgba(2,45,38,.17); }
.agenda-detail li { padding: 4px 0; font-size: 12px; font-weight: 800; }
.agenda-detail li::before { content: "✓"; margin-right: 8px; color: var(--blue); }
.agenda-detail-lime { background: var(--lime); }
.agenda-detail-blue { color: white; background: var(--blue); }
.agenda-detail-blue ul { border-color: rgba(255,255,255,.22); }
.agenda-detail-blue li::before { color: var(--lime); }
.agenda-source { padding: 100px 0; color: white; background: var(--blue-ink); }
.agenda-source-inner { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; }
.agenda-source h2 { color: white; }
.agenda-source-inner > div:last-child p { margin: 0 0 25px; color: rgba(255,255,255,.67); }

.communication-mark { align-self: center; display: flex; flex-direction: column; align-items: center; justify-content: center; width: min(440px, 100%); aspect-ratio: 1; margin-inline: auto; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: inset 0 0 0 45px rgba(255,255,255,.04); transform: rotate(-4deg); }
.communication-mark > span { color: var(--lime); font-size: 64px; line-height: .6; }
.communication-mark strong { color: white; font: 105px/.9 "Anton", sans-serif; letter-spacing: -.05em; }
.communication-mark strong em { color: var(--lime); font-style: normal; }
.communication-mark small { font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.join-section { background: white; }
.join-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; align-items: center; }
.join-copy > p:not(.eyebrow) { color: #50645f; font-size: 18px; }
.join-copy > small { display: block; margin-top: 12px; color: #778782; font-size: 10px; }
.join-card { min-height: 560px; display: flex; flex-direction: column; padding: 32px; color: white; background: var(--blue); box-shadow: 24px 24px 0 var(--lime); }
.join-card-label { font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.join-card > strong { margin: auto 0; font: 70px/.88 "Anton", sans-serif; }
.join-card > strong em { color: var(--lime); font-style: normal; }
.join-card-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.join-card-bottom b { color: var(--lime); font-size: 34px; }
.channel-section { color: white; background: var(--blue-ink); }
.channel-section h2 { color: white; }
.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 54px; }
.channel-card { position: relative; min-height: 260px; display: flex; flex-direction: column; padding: 28px; color: var(--blue-ink); background: white; }
.channel-card > span { font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.channel-card > b { margin-top: auto; font: 30px "Anton", sans-serif; }
.channel-card > p { margin: 6px 0 0; opacity: .65; font-size: 13px; }
.channel-card > i { position: absolute; right: 26px; top: 26px; padding-bottom: 4px; border-bottom: 2px solid currentColor; font-size: 11px; font-style: normal; font-weight: 900; letter-spacing: .16em; opacity: .75; transition: opacity .25s ease; }
.channel-card:hover > i { opacity: 1; }
.channel-card.lime { background: var(--lime); }
.channel-card.blue { color: white; background: var(--blue); }
.instagram-feature { background: var(--lime); }
.instagram-feature-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: center; }
.instagram-feature-copy > p:not(.eyebrow) { color: rgba(2,45,38,.74); font-size: 18px; }
.campaign-contact { color: white; background: var(--blue); }
.campaign-contact h2 { color: white; }
.campaign-contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 8vw; align-items: end; }
.contact-options > p { color: rgba(255,255,255,.7); font-size: 18px; }
.contact-options > a, .contact-options > button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); color: white; background: none; font: inherit; text-align: left; cursor: pointer; }
.contact-options span { font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.contact-options b { color: var(--lime); font-size: 13px; }
.copy-feedback { display: block; min-height: 20px; margin-top: 10px; color: var(--lime); font-size: 11px; font-weight: 800; }

@media (max-width: 980px) {
  .gateway-grid, .agenda-preview-grid { grid-template-columns: 1fr; }
  .gateway-card { min-height: 330px; }
  .home-story-grid, .home-connect-inner, .page-hero-layout, .biography-grid, .profile-feature-grid, .agenda-intro, .agenda-source-inner, .join-grid, .instagram-feature-grid, .campaign-contact-grid { grid-template-columns: 1fr; }
  .home-story-photo { min-height: 520px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .page-hero { padding-top: 150px; }
  .page-portrait { min-height: 500px; width: min(520px, 100%); margin-inline: auto; }
  .agenda-detail-grid { grid-template-columns: 1fr; }
  .communication-mark { max-width: 360px; }
  .join-card { min-height: 440px; }
  .instagram-feature .social-phone { order: 2; }
}

@media (max-width: 640px) {
  .gateway-heading h2 { font-size: 50px; }
  .gateway-card { min-height: 300px; }
  .gateway-card h3 { font-size: 40px; }
  .home-story-photo { min-height: 430px; box-shadow: 12px 12px 0 var(--lime); }
  .home-connect-inner { gap: 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .page-hero { min-height: auto; padding: 132px 0 65px; }
  .page-hero-copy h1, .page-hero-simple h1 { font-size: clamp(63px, 19vw, 86px); }
  .page-breadcrumb { margin-bottom: 30px; }
  .page-portrait { min-height: 390px; }
  .page-portrait .page-number { font-size: 30vw; }
  .page-portrait > span { right: 0; }
  .career-list article { grid-template-columns: 88px 1fr; gap: 16px; }
  .career-list article > b { font-size: 38px; }
  .method-grid, .channel-grid { grid-template-columns: 1fr; }
  .profile-feature-photo { min-height: 430px; box-shadow: 12px 12px 0 var(--lime); }
  .agenda-index-inner { align-items: flex-start; flex-direction: column; gap: 8px; padding-block: 18px; }
  .agenda-index-inner > div { align-self: stretch; flex-wrap: wrap; gap: 10px 20px; overflow-x: visible; }
  .agenda-detail { min-height: 450px; padding: 24px; }
  .agenda-detail h3 { font-size: 33px; }
  .communication-mark { width: 280px; }
  .communication-mark strong { font-size: 75px; }
  .join-card { min-height: 400px; box-shadow: 12px 12px 0 var(--lime); }
  .join-card > strong { font-size: 55px; }
}


/* Direção visual Helen Soares */
.ribbon-track i { background: var(--accent-green); }
.brand-check { width: 13px; height: 36px; background: var(--accent-green); transform: skew(-10deg); font-size: 0; }
.main-nav > a:not(.nav-cta)::after { background: var(--accent-green); }
.nav-cta { box-shadow: 5px 5px 0 var(--accent-green); }
.hero { background: linear-gradient(128deg, #022d26 0%, #075444 54%, #0d705b 100%); }
.hero-orbit { border-color: rgba(228,192,123,.28); }
.portrait-frame { aspect-ratio: .88; border-radius: 48% 48% 10px 10px; background: #eadcc4; }
.portrait-frame img { object-fit: cover; object-position: 50% 49%; transform: scale(1.04); }
.tag-state { color: white; background: var(--accent-green); }
.identity-grid span:nth-child(4) { color: white; background: var(--accent-green); }
.gateway-card.gateway-blue, .agenda-detail.agenda-detail-blue, .channel-card.blue { color: white; background: var(--accent-green); }
.gateway-card.gateway-blue p, .agenda-detail.agenda-detail-blue p, .agenda-detail.agenda-detail-blue li, .channel-card.blue p { color: rgba(255,255,255,.76); }
.gateway-card.gateway-blue small, .agenda-detail.agenda-detail-blue small, .channel-card.blue span { color: #f7f2e9; }
.home-story-photo img, .page-portrait img, .profile-feature-photo img { object-position: 50% 43%; }
.page-portrait img { object-fit: cover; }
.page-portrait { background: #eadcc4; }
.communication-mark { border-color: var(--accent-green); }
.communication-mark > span { color: var(--accent-green); }
.social-stamp { color: white; background: var(--accent-green); }
.phone-frame { box-shadow: 26px 34px 0 var(--accent-green), 0 35px 80px rgba(2,45,38,.28); }
.footer-brand strong, .footer-nav p, .footer-legal p { color: var(--lime); }
.footer-bottom strong { color: var(--lime); }
@media (max-width: 680px) { .identity-grid span:nth-child(4) { background: var(--accent-green); } }

/* Ajustes de identidade e hero */
.brand { gap: 12px; }
.brand-number {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  margin-left: 8px;
  padding: 5px 10px 5px 9px;
  color: var(--blue-ink);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--accent-green);
  transform: rotate(-2deg);
}
.brand-number::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
}
.brand-number small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.brand-number strong {
  font: 32px/.85 "Anton", sans-serif;
  letter-spacing: -.03em;
}
.hero-bottom {
  min-height: 116px;
  align-items: center;
  padding: 15px 0 18px;
}
.hero-bottom p { margin: 0; }
.hero-bottom strong {
  top: 0;
  display: block;
  white-space: nowrap;
  line-height: .84;
}
.home-connect, .profile-feature, .campaign-contact { background: var(--blue); }
.page-hero { background: linear-gradient(130deg, var(--blue-deep), var(--blue) 62%, #0b6a54); }
@media (max-width: 980px) {
  .brand-number { margin-left: 2px; }
  .hero-bottom { margin-top: 0; }
}
@media (max-width: 680px) {
  .brand { gap: 8px; }
  .brand-copy b { font-size: 21px; }
  .brand-copy small { letter-spacing: .2em; }
  .brand-number { min-height: 36px; padding: 4px 8px; box-shadow: 3px 3px 0 var(--accent-green); }
  .brand-number small { display: none; }
  .brand-number strong { font-size: 26px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 8px; min-height: 190px; padding: 18px 0 24px; }
  .hero-bottom strong { order: -1; font-size: 82px; }
  .hero-bottom p { font-size: 9px; }
}

/* Fotografias oficiais */
.portrait-frame img[src*="helen-official"] {
  object-position: 50% 100%;
  transform: scale(1);
}
.page-portrait img[src*="helen-official"] {
  object-position: 50% 32%;
}
.home-story-photo img[src*="helen-community"] {
  object-position: 50% 36%;
}
.profile-feature-photo img[src*="helen-courage"] {
  object-position: 50% 38%;
}
.site-header.scrolled,
.inner-header,
.inner-header.scrolled {
  background: rgba(4, 59, 50, .97);
}

/* Pagina 404 */
.error-page { padding: 180px 0 120px; text-align: center; }
.error-page .eyebrow { justify-content: center; }
.error-page h2 { font-size: clamp(54px, 7vw, 104px); }
.error-page p { max-width: 520px; margin: 26px auto 34px; font-size: 18px; opacity: .78; }
@media (max-width: 640px) { .error-page { padding: 140px 0 90px; } }
