:root {
  --blue-950: #071b3a;
  --blue-900: #0b2855;
  --blue-800: #123a75;
  --yellow-500: #ffc928;
  --yellow-600: #e7ad00;
  --green-600: #15803d;
  --white: #ffffff;
  --paper: #f6f8fb;
  --ink: #102033;
  --muted: #5d6b7c;
  --line: rgba(16, 32, 51, 0.14);
  --shadow: 0 18px 45px rgba(7, 27, 58, 0.18);
  --container: 1120px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.5; background: var(--white); }
body.menu-open, body.proposal-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link { position: absolute; left: 1rem; top: 1rem; z-index: 20; transform: translateY(-150%); background: var(--yellow-500); color: var(--blue-950); padding: 0.7rem 1rem; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 15; display: flex; align-items: center; justify-content: space-between; gap: clamp(.45rem, 1.8vw, 1rem); padding: 0.75rem clamp(0.75rem, 4vw, 2.5rem); color: var(--white); background: rgba(7, 27, 58, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.brand { display: inline-flex; align-items: center; width: min(46vw, 178px); min-width: 128px; text-decoration: none; }
.brand img { width: 100%; height: auto; display: block; }
.header-jingle-actions { display: flex; align-items: center; gap: .35rem; min-width: 0; }
.jingle-toggle { display: inline-flex; align-items: center; justify-content: center; gap: .42rem; min-width: 0; min-height: 42px; padding: .55rem .72rem; border: 1px solid rgba(255,201,40,.42); border-radius: 999px; color: var(--white); background: rgba(255,201,40,.1); font: inherit; font-size: .76rem; font-weight: 800; white-space: nowrap; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.jingle-toggle:hover, .jingle-toggle:focus-visible, .jingle-toggle.is-playing { border-color: var(--yellow-500); background: rgba(255,201,40,.18); }
.jingle-toggle svg, .mobile-menu__jingle-play svg, .mobile-menu__jingle-download svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.jingle-toggle__pause, .is-playing .jingle-toggle__play { display: none; }
.is-playing .jingle-toggle__pause { display: block; }
.jingle-toggle__label--desktop { display: none; }
.jingle-download { display: none; align-items: center; justify-content: center; gap: .35rem; min-height: 42px; padding: .55rem .68rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); background: rgba(255,255,255,.06); font-size: .74rem; font-weight: 800; text-decoration: none; white-space: nowrap; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.jingle-download:hover, .jingle-download:focus-visible { border-color: var(--yellow-500); background: rgba(255,201,40,.13); transform: translateY(-1px); }
.jingle-download svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.jingle-equalizer { display: none; align-items: end; gap: 2px; width: 12px; height: 14px; }
.jingle-toggle.is-playing .jingle-equalizer { display: inline-flex; }
.jingle-equalizer i { width: 2px; height: 45%; border-radius: 3px; background: var(--yellow-500); animation: jingle-level .7s ease-in-out infinite alternate; }
.jingle-equalizer i:nth-child(2) { height: 100%; animation-delay: -.22s; }
.jingle-equalizer i:nth-child(3) { height: 70%; animation-delay: -.42s; }
.menu-button { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.3); border-radius: 16px; background: rgba(255,255,255,.07); color: var(--white); transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.menu-button__icon { position: relative; display: grid; gap: 5px; width: 20px; }
.menu-button__icon i { display: block; width: 100%; height: 2px; border-radius: 9px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.menu-button.is-open .menu-button__icon i:first-child { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open .menu-button__icon i:nth-child(2) { opacity: 0; }
.menu-button.is-open .menu-button__icon i:last-child { transform: translateY(-7px) rotate(-45deg); }
.menu-overlay { position: fixed; z-index: 14; inset: 0; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(3,14,31,.48); opacity: 0; visibility: hidden; transition: opacity 200ms ease, visibility 200ms ease; }
.menu-overlay.is-open { opacity: 1; visibility: visible; }
.site-nav { position: fixed; z-index: 17; inset: .65rem .65rem auto auto; display: flex; flex-direction: column; gap: .2rem; width: min(88vw, 390px); height: max-content; max-height: calc(100dvh - 1.3rem); padding: 1rem; overflow-y: auto; color: var(--white); background: linear-gradient(160deg, var(--blue-900), var(--blue-950)); box-shadow: -18px 0 48px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; opacity: 0; visibility: hidden; clip-path: inset(0 0 0 100% round 24px); transition: opacity 200ms ease, visibility 200ms ease, clip-path 220ms ease; }
.site-nav.is-open { opacity: 1; visibility: visible; clip-path: inset(0 round 24px); }
.site-nav > a { padding: .82rem .9rem; border-radius: 12px; text-decoration: none; font-weight: 700; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a:not(.nav-cta):focus-visible { background: rgba(255,255,255,.09); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .35rem; padding: .15rem .2rem .65rem .9rem; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--yellow-500); font-size: .78rem; font-weight: 900; letter-spacing: .11em; }
.mobile-menu__close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; color: var(--white); background: rgba(255,255,255,.07); }
.mobile-menu__close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.mobile-menu__jingle { margin-top: auto; padding: 1rem .9rem; border: 1px solid rgba(255,201,40,.25); border-radius: 16px; background: rgba(255,255,255,.06); }
.mobile-menu__jingle > strong { display: block; margin-bottom: .7rem; color: var(--yellow-500); font-size: .74rem; letter-spacing: .08em; }
.mobile-menu__jingle-actions { display: grid; grid-template-columns: .8fr 1.2fr; gap: .55rem; }
.mobile-menu__jingle-play, .mobile-menu__jingle-download { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; min-height: 44px; padding: .55rem .6rem; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.08); font: inherit; font-size: .82rem; font-weight: 800; text-decoration: none; }
.mobile-menu__jingle-play.is-playing { color: var(--blue-950); background: var(--yellow-500); }
.nav-cta { background: var(--yellow-500); color: var(--blue-950); text-align: center; border-radius: var(--radius-sm); }
@keyframes jingle-level { to { height: 25%; } }
@media (prefers-reduced-motion: reduce) { .jingle-equalizer i { animation: none; } .site-nav, .menu-overlay, .menu-button__icon i { transition: none; } }
.hero { position: relative; min-height: auto; display: grid; align-items: stretch; margin-top: 0; padding: 0; color: var(--white); overflow: hidden; aspect-ratio: 3 / 4; border-radius: 0 0 var(--radius-lg) var(--radius-lg); isolation: isolate; }
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; }
.hero__layers { display: none; }
.hero__layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; transform: translate3d(0, 0, 0) scale(1); transform-origin: center; will-change: transform; }
.hero__layer--background { z-index: 0; }
.hero__layer--brush { z-index: 1; }
.hero__layer--slogan { z-index: 2; }
.hero__layer--number { z-index: 3; }
.hero__layer--polaco { z-index: 4; }
.hero__layer { opacity: 0; animation: hero-layer-in 720ms ease-out forwards; }
.hero__layer--brush { animation-delay: 120ms; }
.hero__layer--polaco { animation-delay: 220ms; }
.hero__layer--number { animation-delay: 360ms; }
.hero__layer--slogan { animation-delay: 520ms; }
@keyframes hero-layer-in { from { opacity: 0; } to { opacity: 1; } }
.hero__mobile-layers { display: none; }
.hero__mobile-layer { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; pointer-events: none; transform-origin: center; will-change: transform; opacity: 1; }
.hero__mobile-layer--background { z-index: 0; animation: mobile-bg 18s ease-in-out infinite alternate, mobile-layer-in 760ms ease-out both; }
.hero__mobile-layer--brush { z-index: 1; animation: mobile-brush 12s ease-in-out 120ms infinite alternate, mobile-layer-in 760ms ease-out 120ms both; }
.hero__mobile-layer--number { z-index: 2; animation: mobile-number 13s ease-in-out 260ms infinite alternate, mobile-layer-in 760ms ease-out 260ms both; }
.hero__mobile-layer--polaco { z-index: 3; animation: mobile-polaco 9s ease-in-out 420ms infinite alternate, mobile-layer-in 820ms ease-out 420ms both; }
.hero__mobile-layer--slogan { z-index: 4; animation: mobile-slogan 10s ease-in-out 620ms infinite alternate, mobile-layer-in 820ms ease-out 620ms both; }
@keyframes mobile-layer-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes mobile-bg { from { transform: translate3d(-4px, 3px, 0) scale(1.03); } to { transform: translate3d(4px, -3px, 0) scale(1.06); } }
@keyframes mobile-brush { from { transform: translate3d(-10px, 7px, 0) scale(1); } to { transform: translate3d(10px, -7px, 0) scale(1.02); } }
@keyframes mobile-number { from { transform: translate3d(-4px, 3px, 0) scale(1); } to { transform: translate3d(4px, -3px, 0) scale(1.01); } }
@keyframes mobile-polaco { from { transform: translate3d(-8px, 10px, 0) scale(1); } to { transform: translate3d(8px, -10px, 0) scale(1.018); } }
@keyframes mobile-slogan { from { transform: translate3d(-3px, 4px, 0) scale(1); } to { transform: translate3d(3px, -4px, 0) scale(1.01); } }
.hero__overlay { display: none; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 27, 58, 0.95), rgba(7, 27, 58, 0.68) 48%, rgba(7, 27, 58, 0.18)), linear-gradient(0deg, rgba(7, 27, 58, 0.7), rgba(7, 27, 58, 0)); }
.hero__content { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.eyebrow, .section-kicker { margin: 0 0 0.6rem; color: var(--yellow-500); font-weight: 800; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 10ch; font-size: clamp(3.4rem, 12vw, 8rem); line-height: 0.9; text-transform: uppercase; }
.hero__number { margin: 0.65rem 0 0; color: var(--yellow-500); font-size: clamp(4rem, 17vw, 8.5rem); line-height: 0.9; font-weight: 900; }
.hero__line { max-width: 640px; margin: 0.8rem 0 0; font-size: clamp(1.35rem, 4vw, 2.3rem); font-weight: 800; text-transform: uppercase; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.85rem 1.05rem; text-decoration: none; font-weight: 800; border: 2px solid transparent; border-radius: var(--radius-sm); transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease; }
.button--primary { background: var(--yellow-500); color: var(--blue-950); }
.button--primary:hover, .button--primary:focus-visible { background: var(--yellow-600); }
.button--secondary { color: var(--white); border-color: rgba(255, 255, 255, 0.75); }
.button:hover, .button:focus-visible, .menu-button:hover, .menu-button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7, 27, 58, 0.22); }
.section { padding: clamp(3.3rem, 7vw, 5.5rem) 1rem; }
.section__inner { width: min(100%, var(--container)); margin: 0 auto; }
.section h2, .final-cta h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.04; text-transform: uppercase; }
.section p { font-size: 1.03rem; }
.section--light { background: var(--paper); }
.section--white { background: var(--white); }
.section--blue { background: var(--blue-950); color: var(--white); }
#regiao { position: relative; overflow: hidden; }
#regiao .section__inner { position: relative; z-index: 1; }
.region-backdrop { position: absolute; top: 50%; right: -0.06em; z-index: 0; color: var(--blue-900); font-size: clamp(18rem, 35vw, 31rem); font-weight: 900; line-height: 0.75; letter-spacing: -0.08em; opacity: 0.045; pointer-events: none; user-select: none; transform: translate3d(0, -50%, 0); }
.region-heading h2 { max-width: 10ch; }
.region-title--mobile { display: none; }
.region-highlight { color: var(--yellow-500); }
.section--proposal-bg {
  position: relative;
  background: url("../images/proposal-section-bg.png") center bottom / cover no-repeat;
  overflow: hidden;
}
.section--proposal-bg .section__inner { position: relative; z-index: 1; }
.proposal-overview { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.proposal-overview__copy { max-width: 700px; }
.proposal-overview__copy > p:not(.section-kicker) { color: rgba(255,255,255,.86); line-height: 1.65; }
.proposal-overview__lead { max-width: 570px; color: var(--white) !important; font-size: clamp(1.25rem, 2.4vw, 1.65rem) !important; font-weight: 800; line-height: 1.35 !important; }
.proposal-overview__cta { margin-top: 1.25rem; }
.proposal-axis-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .65rem; margin: 0; padding: 0; list-style: none; }
.proposal-axis-list li { display: flex; align-items: center; gap: .65rem; min-width: 0; padding: .85rem .9rem; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); background: rgba(255,255,255,.07); font-weight: 700; }
.proposal-axis-list span { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; color: var(--blue-950); background: var(--yellow-500); border-radius: 9px; font-size: .85rem; }
.instagram-reels { overflow: hidden; background: #f5f5f5; }
.instagram-reels__heading { max-width: 720px; margin: 0 auto; text-align: center; }
.instagram-reels__heading > p:last-child { margin: .8rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.instagram-reels__carousel { position: relative; width: min(100%, 1120px); margin: 2.2rem auto 0; }
.instagram-reels__track { display: flex; gap: clamp(.9rem, 1.8vw, 1.25rem); width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-x pan-y; }
.instagram-reels__track::-webkit-scrollbar { display: none; }
.instagram-reel-card { position: relative; flex: 0 0 calc((100% - 2.5rem) / 2.35); min-width: 0; min-height: 620px; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 14px 32px rgba(7,27,58,.1); }
.instagram-reel-card__placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: .8rem; padding: 1.25rem; color: var(--muted); background: linear-gradient(145deg, #eef2f7, #fff); text-align: center; }
.instagram-reel-card__placeholder::before { content: ""; width: 42px; height: 42px; margin: 0 auto; border: 3px solid rgba(18,58,117,.16); border-top-color: var(--yellow-600); border-radius: 50%; animation: instagram-reel-spin .9s linear infinite; }
.instagram-reel-card__placeholder a { color: var(--blue-800); font-weight: 800; text-underline-offset: 3px; }
.instagram-reel-card .instagram-media { width: 100% !important; min-width: 0 !important; max-width: none !important; margin: 0 !important; border: 0 !important; }
.instagram-reels__control { position: absolute; z-index: 2; top: 50%; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(18,58,117,.18); border-radius: 50%; color: var(--blue-900); background: rgba(255,255,255,.94); box-shadow: 0 8px 22px rgba(7,27,58,.16); font-size: 1.15rem; transform: translateY(-50%); cursor: pointer; transition: opacity 180ms ease, transform 180ms ease, background 180ms ease; }
.instagram-reels__control:hover:not(:disabled) { background: var(--yellow-500); transform: translateY(-50%) scale(1.04); }
.instagram-reels__control:disabled { opacity: 0; pointer-events: none; }
.instagram-reels__control--prev { left: -21px; }
.instagram-reels__control--next { right: -21px; }
.instagram-reels__action { display: flex; justify-content: center; margin-top: 2rem; text-align: center; }
@keyframes instagram-reel-spin { to { transform: rotate(360deg); } }
@media (min-width: 640px) and (max-width: 899px) { .instagram-reel-card { flex-basis: calc((100% - 1.25rem) / 1.65); } .instagram-reels__control--prev { left: .75rem; } .instagram-reels__control--next { right: .75rem; } }
@media (max-width: 639px) { .instagram-reels__carousel { width: calc(100vw - 2rem); } .instagram-reel-card { flex-basis: 84%; min-height: 610px; } .instagram-reels__control { display: none; } .instagram-reels__action .button { width: 100%; } }
.region-layout, .story-layout { display: grid; gap: 2rem; }
.region-copy { max-width: 720px; }
.region-copy > p { max-width: 680px; font-size: clamp(1.06rem, 1.6vw, 1.18rem); line-height: 1.62; }
.region-copy > p + p { margin-top: 0.9rem; }
.region-bridge { display: flex; align-items: center; gap: 0.7rem; margin: 1.7rem 0 1.15rem; color: var(--blue-950); font-size: clamp(1.05rem, 1.8vw, 1.25rem) !important; font-weight: 800; line-height: 1.3 !important; }
.region-bridge span { flex: 0 0 28px; width: 28px; height: 4px; border-radius: 999px; background: var(--yellow-500); }
.region-commitments { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.region-commitment { min-width: 0; padding: 1rem; background: var(--white); border: 1px solid rgba(16, 32, 51, 0.08); border-radius: var(--radius-md); box-shadow: 0 8px 22px rgba(7, 27, 58, 0.08); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.region-commitment:hover { transform: translateY(-4px); border-color: rgba(255, 201, 40, 0.65); box-shadow: 0 15px 30px rgba(7, 27, 58, 0.13); }
.region-commitment__icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: var(--blue-950); background: var(--yellow-500); border-radius: 10px; transition: transform 220ms ease; }
.region-commitment:hover .region-commitment__icon { transform: translateY(-2px); }
.region-commitment__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.region-commitment h3 { margin: 0.7rem 0 0.25rem; color: var(--blue-950); font-size: 0.93rem; line-height: 1.1; letter-spacing: 0.04em; }
.region-commitment p { margin: 0; color: var(--muted); font-size: 0.9rem !important; line-height: 1.35 !important; }
.check-list { display: grid; gap: 0.65rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.check-list li { padding-left: 1.15rem; border-left: 4px solid var(--yellow-500); font-weight: 700; }
.proposal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; margin-top: 2rem; }
.proposal-card { display: flex; flex-direction: column; background: var(--white); color: var(--ink); padding: 0.95rem; border: 1px solid rgba(16, 32, 51, 0.08); border-radius: 12px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.proposal-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 0.8rem; color: var(--white); border-radius: 12px; box-shadow: 0 8px 18px rgba(7, 27, 58, 0.12); }
.proposal-card__icon--red { background: #df534c; }
.proposal-card__icon--blue { background: #4864df; }
.proposal-card__icon--green { background: #4da153; }
.proposal-card__icon--gold { background: #c89128; }
.proposal-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.proposal-card:hover { transform: translateY(-6px); border-color: rgba(255, 201, 40, 0.55); box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16); }
.proposal-card:hover .proposal-card__icon { transform: scale(1.06) rotate(-2deg); }
.proposal-card__icon { transition: transform 220ms ease; }
.proposal-card h3, .video-card h3, .news-item h3 { margin: 0.4rem 0 0.45rem; font-size: 1.25rem; line-height: 1.15; }
.proposal-card h3 { font-size: 1rem; }
.proposal-card p { font-size: 0.88rem; line-height: 1.38; }
.proposal-card p, .video-card p, .news-item p { margin: 0; color: var(--muted); }
.proposal-card__link { align-self: flex-start; margin-top: auto; padding: 0.65rem 0 0; border: 0; background: transparent; color: var(--blue-800); font: inherit; font-weight: 800; cursor: pointer; }
.proposal-card__link:hover, .proposal-card__link:focus-visible { color: var(--yellow-600); text-decoration: underline; }
.proposal-modal[hidden] { display: none; }
.proposal-modal { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; padding: 1rem; }
.proposal-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 27, 58, 0.66); opacity: 0; transition: opacity 220ms ease; }
.proposal-modal__dialog { position: relative; width: min(100%, 780px); max-height: min(88vh, 760px); overflow-y: auto; padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); opacity: 0; transform: translateY(18px); transition: opacity 220ms ease, transform 220ms ease; }
.proposal-modal.is-open .proposal-modal__backdrop { opacity: 1; }
.proposal-modal.is-open .proposal-modal__dialog { opacity: 1; transform: translateY(0); }
.proposal-modal__close { position: absolute; top: 0.8rem; right: 1rem; border: 0; background: transparent; color: var(--blue-950); font: inherit; font-size: 2rem; line-height: 1; cursor: pointer; }
.proposal-modal__icon { display: inline-flex; width: 46px; height: 46px; margin-bottom: 0.8rem; border-radius: 12px; box-shadow: 0 8px 18px rgba(7, 27, 58, 0.12); }
.proposal-modal__icon--red { background: #df534c; }
.proposal-modal__icon--blue { background: #4864df; }
.proposal-modal__icon--green { background: #4da153; }
.proposal-modal__icon--gold { background: #c89128; }
.proposal-modal__dialog h3 { margin: 0 2rem 0.8rem 0; color: var(--blue-950); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.02; text-transform: uppercase; }
.proposal-modal__list { display: grid; gap: 0.75rem; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.proposal-modal__list li { padding-left: 1rem; border-left: 4px solid var(--yellow-500); }
.proposal-modal__invite { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.proposal-modal__invite p { margin: 0 0 0.9rem; font-weight: 800; }
.idea-modal[hidden] { display: none; }
.idea-modal { position: fixed; inset: 0; z-index: 45; display: grid; place-items: center; padding: 1rem; }
.idea-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 27, 58, 0.72); opacity: 0; transition: opacity 220ms ease; }
.idea-modal__dialog { position: relative; width: min(100%, 760px); max-height: min(90vh, 820px); overflow-y: auto; padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); opacity: 0; transform: translateY(18px); transition: opacity 220ms ease, transform 220ms ease; }
.idea-modal.is-open .idea-modal__backdrop { opacity: 1; }
.idea-modal.is-open .idea-modal__dialog { opacity: 1; transform: translateY(0); }
.idea-modal__close { position: absolute; top: 0.8rem; right: 1rem; border: 0; background: transparent; color: var(--blue-950); font: inherit; font-size: 2rem; line-height: 1; cursor: pointer; }
.idea-modal h2 { max-width: 18ch; margin: 0 2rem 1.4rem 0; color: var(--blue-950); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.02; text-transform: uppercase; }
.idea-modal h2 span { color: var(--yellow-600); }
.idea-form { display: grid; gap: 1rem; }
.idea-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.idea-form label { display: grid; gap: 0.35rem; color: var(--blue-950); font-weight: 800; }
.idea-form__label-text { display: inline-flex; align-items: baseline; gap: .2em; justify-self: start; }
.idea-form__required { color: #c62828; font-size: .78em; line-height: 1; }
.idea-form label small { color: var(--muted); font-weight: 400; }
.idea-form input[type="text"], .idea-form input[type="tel"], .idea-form input[type="email"], .idea-form select, .idea-form textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.75rem 0.8rem; color: var(--ink); background: var(--paper); font: inherit; }
.idea-form textarea { resize: vertical; min-height: 130px; }
.idea-form input:focus-visible, .idea-form select:focus-visible, .idea-form textarea:focus-visible { outline: 3px solid rgba(255, 201, 40, 0.55); outline-offset: 2px; border-color: var(--yellow-600); }
.idea-form__consent { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 0.55rem !important; color: var(--muted) !important; font-size: 0.9rem; font-weight: 400 !important; }
.idea-form__consent input { margin-top: 0.2rem; accent-color: var(--yellow-600); }
.idea-form__honeypot { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.idea-form__error { margin: 0; color: #a82e2e; font-weight: 700; }
.idea-form__submit { justify-self: start; }
.idea-modal__success h2 { max-width: 18ch; margin: 0 0 1.4rem; color: var(--blue-950); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; }
.idea-modal__success[hidden] { display: none; }
.story-photo { position: relative; align-self: stretch; min-height: 320px; background: var(--blue-900); border-radius: var(--radius-lg); overflow: hidden; }
.story-photo img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.story-photo__phrase { position: absolute; left: clamp(1rem, 2vw, 2rem); bottom: 54%; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; max-width: calc(100% - 2rem); margin: 0; color: var(--white); font-size: clamp(2.8rem, 5vw, 5.2rem); font-weight: 800; line-height: .92; letter-spacing: -0.04em; text-shadow: 0 2px 8px rgba(7, 27, 58, 0.28); }
.story-photo__phrase span:nth-child(n + 2) { color: var(--yellow-500); }
.story-copy { align-self: center; }
.story-layout { align-items: center; }
.story-copy--history { display: contents; }
.story-photo--history { grid-column: 1; grid-row: 1 / span 3; aspect-ratio: 4 / 5; min-height: 0; }
.story-photo--history img { min-height: 0; }
.story-kicker, .story-title, .story-body { grid-column: 2; }
.story-kicker { grid-row: 1; align-self: start; margin-bottom: 0; }
.story-title { grid-row: 2; margin-top: .45rem; }
.story-body { grid-row: 3; align-self: start; }
.story-body p + p { margin-top: .9rem; }
.story-photo--mobile { display: none; }
.story-cta { margin-top: .8rem; background: var(--blue-950); color: var(--yellow-500); }
.story-cta:hover, .story-cta:focus-visible { background: var(--blue-800); color: var(--yellow-500); }
.text-link { display: inline-block; margin-top: 0.7rem; color: var(--blue-800); font-weight: 800; }
.section-heading { max-width: 740px; }
.video-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.video-card { min-height: 210px; display: flex; flex-direction: column; justify-content: end; padding: 1.25rem; text-decoration: none; color: var(--white); background: linear-gradient(0deg, rgba(7, 27, 58, 0.9), rgba(7, 27, 58, 0.25)), var(--blue-800); border-bottom: 6px solid var(--yellow-500); border-radius: var(--radius-md); transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease; overflow: hidden; }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(7, 27, 58, 0.22); filter: saturate(1.08); }
.video-card__tag { width: fit-content; background: var(--yellow-500); color: var(--blue-950); padding: 0.28rem 0.5rem; font-weight: 800; text-transform: uppercase; font-size: 0.78rem; border-radius: 999px; }
.video-card p { color: rgba(255, 255, 255, 0.84); }
.news-list { display: grid; gap: 0.8rem; margin-top: 2rem; border-top: 1px solid var(--line); }
.news-item { padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.news-item:hover { transform: translateY(-4px); border-color: rgba(18, 58, 117, 0.2); box-shadow: 0 14px 28px rgba(7, 27, 58, 0.1); }
.news-item time { color: var(--blue-800); font-weight: 800; font-size: 0.88rem; }
.home-materials-cta { position: relative; min-height: clamp(420px, 34vw, 520px); overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--blue-950) 0%, var(--blue-800) 62%, #174a82 100%); }
.home-materials-cta::before { content: ""; position: absolute; width: clamp(22rem, 44vw, 38rem); height: clamp(22rem, 44vw, 38rem); right: -13rem; top: -17rem; border: clamp(1rem, 2.2vw, 2rem) solid rgba(255, 201, 40, 0.78); border-radius: 50%; transform: rotate(-18deg); pointer-events: none; }
.home-materials-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.7fr); align-items: center; gap: 2rem; width: min(100%, var(--container)); min-height: inherit; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) 1rem; }
.home-materials-cta__content { max-width: 760px; }
.home-materials-cta .section-kicker { color: var(--yellow-500); }
.home-materials-cta h2 { max-width: 16ch; margin: 0.5rem 0 1rem; font-size: clamp(2.2rem, 5vw, 5rem); line-height: 0.9; letter-spacing: -0.05em; text-transform: uppercase; }
.home-materials-cta__content > p:not(.section-kicker) { max-width: 600px; margin: 0 0 1.5rem; color: rgba(255, 255, 255, 0.88); font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.45; }
.home-materials-cta__decor { justify-self: end; color: rgba(255, 255, 255, 0.08); font-size: clamp(9rem, 22vw, 22rem); font-weight: 950; line-height: 0.8; letter-spacing: -0.12em; pointer-events: none; }
#videos[hidden], #noticias[hidden] { display: none !important; }
.final-cta { padding: clamp(3.5rem, 8vw, 6rem) 1rem; color: var(--white); background: var(--blue-900); text-align: center; }
.final-cta__inner { width: min(100%, 850px); margin: 0 auto; }
.final-cta p { margin-left: auto; margin-right: auto; max-width: 620px; }
.site-footer { padding: 2rem 1rem 5.4rem; color: rgba(255, 255, 255, 0.78); background: var(--blue-950); text-align: center; }
.site-footer p { margin: 0.25rem 0; }
.footer-note { font-size: 0.9rem; }
.mobile-whatsapp { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 16; display: flex; justify-content: center; align-items: center; min-height: 52px; background: var(--green-600); color: var(--white); text-decoration: none; font-weight: 900; box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25); border-radius: 999px; transition: transform 180ms ease, box-shadow 180ms ease; }
.mobile-whatsapp:hover, .mobile-whatsapp:focus-visible { transform: translateY(-3px); box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28); }
.cookie-banner { transform: translateX(-50%); }
.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .region-commitment:hover.is-visible { transform: translateY(-4px); }
@media (min-width: 720px) {
  .menu-button { display: none; }
  .site-nav { position: static; display: flex; flex-direction: row; align-items: center; width: auto; padding: 0; overflow: visible; color: var(--white); background: transparent; box-shadow: none; border: 0; border-radius: 0; opacity: 1; visibility: visible; clip-path: none; }
  .site-nav a { padding: 0.55rem 0.5rem; font-size: 0.92rem; }
  .site-nav .nav-cta { padding: 0.62rem 0.85rem; color: var(--blue-950); }
  .mobile-menu__top, .mobile-menu__jingle { display: none; }
  .jingle-toggle__label--desktop { display: inline; }
  .jingle-toggle__label--mobile { display: none; }
  .region-layout { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .region-commitments { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .proposal-grid, .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proposal-overview { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); }
  .proposal-card { padding: 1.25rem; }
  .proposal-card h3 { font-size: 1.25rem; }
  .proposal-card p { font-size: 1.03rem; }
  .news-list { grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
  .news-item { padding-right: 1.1rem; border-bottom: 1px solid var(--line); }
  .mobile-whatsapp { display: none; }
  .site-footer { padding-bottom: 2rem; }
}
@media (max-width: 719px) {
  .proposal-modal { padding: 0.55rem; }
  .proposal-modal__dialog { max-height: calc(100vh - 1.1rem); padding: 1.35rem 1.1rem 1.5rem; border-radius: var(--radius-md); }
  .idea-modal { padding: 0.55rem; }
  .idea-modal__dialog { max-height: calc(100vh - 1.1rem); padding: 1.35rem 1.1rem 1.5rem; border-radius: var(--radius-md); }
  .idea-form__grid { grid-template-columns: 1fr; }
  .idea-form__submit { width: 100%; }
  .story-layout { grid-template-columns: 1fr; align-items: start; }
  .story-photo--history { display: none; }
  .story-kicker, .story-title, .story-photo--mobile, .story-body { grid-column: 1; }
  .story-kicker { grid-row: 1; }
  .story-title { grid-row: 2; margin-bottom: 1.2rem; font-size: clamp(2rem, 9vw, 2.9rem); }
  .story-photo--mobile { display: block; grid-row: 3; aspect-ratio: 4 / 5; min-height: 0; margin-bottom: 1.5rem; }
  .story-photo--mobile img { min-height: 0; }
  .story-photo__phrase { left: 1rem; bottom: 52%; max-width: calc(100% - 2rem); font-size: clamp(2.3rem, 10vw, 3.5rem); }
  .story-body { grid-row: 4; }
}
@media (min-width: 1080px) {
  .site-nav a { padding-left: 0.75rem; padding-right: 0.75rem; }
  .hero { padding-left: 0; padding-right: 0; }
}
@media (min-width: 720px) and (max-width: 899px) {
  .home-page .menu-button, .proposals-page .menu-button { display: grid; }
  .home-page .site-nav, .proposals-page .site-nav { position: fixed; inset: .65rem .65rem auto auto; flex-direction: column; align-items: stretch; width: min(88vw, 390px); height: max-content; max-height: calc(100dvh - 1.3rem); padding: 1rem; overflow-y: auto; color: var(--white); background: linear-gradient(160deg, var(--blue-900), var(--blue-950)); box-shadow: -18px 0 48px rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; opacity: 0; visibility: hidden; clip-path: inset(0 0 0 100% round 24px); }
  .home-page .site-nav.is-open, .proposals-page .site-nav.is-open { opacity: 1; visibility: visible; clip-path: inset(0 round 24px); }
  .mobile-menu__top { display: flex; }
  .mobile-menu__jingle { display: block; }
  .jingle-toggle__label--desktop { display: none; }
  .jingle-toggle__label--mobile { display: inline; }
}
@media (min-width: 900px) { .jingle-download--desktop { display: inline-flex; } }
@media (min-width: 900px) and (max-width: 1120px) { .site-header { gap: .55rem; padding-left: 1rem; padding-right: 1rem; } .brand { width: 138px; min-width: 118px; } .jingle-toggle { padding-inline: .6rem; font-size: .7rem; } .site-nav a { padding-left: .38rem; padding-right: .38rem; font-size: .8rem; } }
@media (max-width: 390px) { .site-header { gap: .38rem; padding-left: .55rem; padding-right: .55rem; } .brand { width: min(41vw, 148px); min-width: 112px; } .jingle-toggle { min-height: 40px; padding: .45rem .55rem; font-size: .7rem; } .jingle-toggle svg { width: 16px; height: 16px; } .menu-button { flex-basis: 46px; width: 46px; height: 46px; border-radius: 15px; } }
@media (max-width: 360px) { .brand { width: 39vw; min-width: 106px; } .jingle-toggle { gap: .3rem; padding-inline: .45rem; } .jingle-equalizer { display: none !important; } }
@media (max-width: 719px) {
  #regiao .region-backdrop { display: none; }
  #regiao .region-layout { gap: 0.7rem; }
  #regiao .region-heading { position: relative; }
  #regiao .region-title--desktop { display: none; }
  #regiao .region-title--mobile { position: relative; z-index: 1; display: block; max-width: none; font-size: clamp(1.85rem, 7.2vw, 2.55rem); line-height: 1.03; letter-spacing: -0.02em; }
  #regiao .region-copy { position: relative; z-index: 1; }
  .region-commitment { padding: 0.95rem; }
  .home-materials-cta { min-height: 420px; }
  .home-materials-cta__inner { display: block; padding: 3rem 1rem 4rem; }
  .home-materials-cta h2 { max-width: 12ch; font-size: clamp(2.2rem, 11vw, 3.7rem); }
  .home-materials-cta__decor { position: absolute; right: -1.5rem; bottom: 1rem; font-size: clamp(9rem, 36vw, 14rem); }
}
@media (min-width: 900px) {
  .hero { min-height: 0; height: auto; margin-top: 0; aspect-ratio: 16 / 9; }
  .hero__media--mobile { display: none; }
  .hero__layers { display: block; position: absolute; inset: 0; z-index: 0; overflow: hidden; }
  .hero__media, .hero__layers { border-radius: inherit; }
}
@media (max-width: 767px) {
  .hero { min-height: 0; height: auto; aspect-ratio: 3 / 4; perspective: 1200px; }
  .hero__media--mobile { display: none; }
  .hero__mobile-layers { display: block; position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .hero__layer { animation: none; opacity: 1; }
  .hero__mobile-layer { animation: none; opacity: 1; transform: none; }
}
