:root {
  --navy: #031c46;
  --navy-2: #062a63;
  --blue: #0a58be;
  --sky: #32a8ed;
  --green: #009a49;
  --yellow: #f8c400;
  --ink: #0c1830;
  --muted: #607089;
  --soft: #f2f6fb;
  --line: #dce5f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 28, 70, 0.14);
}




/* Vídeo da seção "Quem pode participar" */

.participant-video-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at center,
      rgba(15, 76, 150, 0.9),
      rgba(3, 28, 70, 1) 72%
    );
  box-shadow: var(--shadow);
}

.participant-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  object-fit: contain;
}

/* Coloca a legenda no alto para não cobrir os controles */
.participant-video-card .photo-caption {
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  min-width: 230px;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 900px) {
  .participant-video-card {
    height: 520px;
  }
}

/* Celular */
@media (max-width: 560px) {
  .participant-video-card {
    height: 520px;
    border-radius: 18px;
  }

  .participant-video-card .photo-caption {
    top: 14px;
    right: 14px;
    left: 14px;
    min-width: 0;
  }
}




* { box-sizing: border-box; }
.is-hidden { display: none !important; }
.honey-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header { position: sticky; top: 0; z-index: 100; height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(32px, calc((100vw - 1180px) / 2)); background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(3, 28, 70, .08); backdrop-filter: blur(16px); }
.brand { width: 122px; height: 68px; display: flex; align-items: center; }
.brand img { width: auto; height: 64px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; color: var(--navy); }
.main-nav a { position: relative; padding: 28px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--blue); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.nav-cta { border: 0; border-radius: 999px; background: var(--navy); color: white; padding: 13px 22px; font-weight: 800; cursor: pointer; }
.main-nav .nav-cta { padding: 13px 22px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--navy); }

.hero { 

    position: relative;
    min-height: 700px;
    background-image: linear-gradient(rgba(0, 25, 60, 0.5), rgba(0, 25, 60, 1.7)), url(assets/palco-principal.png);
    background-position: center 52%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3, 18, 48, .96) 0%, rgba(3, 27, 70, .86) 48%, rgba(3, 22, 55, .55) 100%), linear-gradient(0deg, rgba(3, 20, 50, .42), transparent 42%); }
.hero-content { min-height: 760px; padding: 80px 0 74px; display: grid; grid-template-columns: 1.2fr .82fr; gap: 70px; align-items: center; }
.hero-copy { color: white; }
.hero-logo-card { width: 320px; margin-bottom: 26px; padding: 12px 18px 8px;  border-radius: 16px; }
.hero-logo-card img { width: 100%; }
.eyebrow { margin: 0 0 16px; color: var(--blue); text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 900; }
.eyebrow.light { color: #8ed8ff; }
.hero h1 { max-width: 710px; margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .99; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 24px 0 28px; font-size: 20px; line-height: 1.55; color: rgba(255,255,255,.84); }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-highlights span { padding: 11px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); font-size: 13px; backdrop-filter: blur(10px); }
.hero-highlights strong { color: white; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 0; border-radius: 9px; font-size: 14px; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-yellow { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 28px rgba(248,196,0,.22); }
.button-blue { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(10,88,190,.2); }
.button-outline { color: white; border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.05); }
.button.full { width: 100%; }

.lead-card, .proposal-form-card { border-radius: 22px; padding: 30px; background: white; box-shadow: var(--shadow); }
.mini-label { margin: 0 0 9px; color: var(--green); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 900; }
.lead-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 29px; line-height: 1.12; letter-spacing: -.035em; }
.lead-card > p:not(.mini-label) { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.5; }
form { display: grid; gap: 13px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
input { width: 100%; height: 45px; padding: 0 13px; color: var(--ink); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; border: 1px solid var(--line); border-radius: 8px; outline: none; background: #fbfdff; transition: border .2s, box-shadow .2s; }
input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,88,190,.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-card small { display: block; margin-top: 12px; color: #8995a7; text-align: center; font-size: 10px; }
.success-state { min-height: 385px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: var(--ink); }
.success-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; color: white; background: var(--green); font-size: 27px; font-weight: 900; }
.success-state h2, .success-state h3 { margin: 0 0 12px; color: var(--navy); font-size: 30px; }
.success-state p:not(.mini-label) { margin: 0 0 22px; color: var(--muted); line-height: 1.6; }
.text-button { padding: 0 0 4px; color: var(--blue); border: 0; border-bottom: 1px solid; background: transparent; font-weight: 800; cursor: pointer; }
.form-message { margin: 2px 0 0; padding: 11px 13px; border-radius: 8px; font-size: 12px; font-weight: 700; line-height: 1.45; }
.form-message.error { color: #8d1e28; border: 1px solid #f3c6cb; background: #fff1f2; }
.button.is-loading { opacity: .7; cursor: wait; pointer-events: none; }

.countdown-strip { position: relative; z-index: 3; margin-top: -1px; color: white; background: var(--navy); border-top: 1px solid rgba(255,255,255,.12); }
.countdown-strip::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--blue) 0 38%, var(--green) 38% 68%, var(--yellow) 68% 100%); }
.countdown-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.countdown-inner > div:first-child { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; }
.countdown-inner strong { font-size: 16px; }
.countdown-inner small { color: rgba(255,255,255,.58); font-size: 11px; }
.countdown-inner > div:first-child small { grid-column: 2; }
.pulse-dot { width: 9px; height: 9px; grid-row: 1 / 3; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 6px rgba(248,196,0,.13); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 11px rgba(248,196,0,0); } }
.countdown-numbers { display: flex; align-items: center; gap: 14px; }
.countdown-numbers span { min-width: 62px; display: grid; text-align: center; }
.countdown-numbers b { font-size: 30px; font-variant-numeric: tabular-nums; }
.countdown-numbers i { color: rgba(255,255,255,.28); font-style: normal; }

.section-heading { max-width: 680px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.narrow { max-width: 650px; }
.section-heading h2, .split-layout h2, .region-copy h2, .participant-layout h2 { margin: 0 0 20px; color: var(--navy); font-size: clamp(38px, 4vw, 56px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading > p:not(.eyebrow), .section-lead, .region-copy > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.proof-section { padding: 110px 0; background: var(--soft); }
.proof-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px 68px; align-items: center; }
.proof-image { position: relative; height: 405px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.proof-image img { width: 100%; height: 100%; object-fit: cover; }
.image-badge { position: absolute; left: 22px; bottom: 22px; display: grid; padding: 14px 18px; color: white; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(3,28,70,.88); backdrop-filter: blur(8px); }
.image-badge strong { color: var(--yellow); font-size: 21px; }
.image-badge span { font-size: 11px; }
.proof-stats { grid-column: 1 / -1; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stat-card { min-height: 135px; display: flex; flex-direction: column; justify-content: center; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 10px 24px rgba(3,28,70,.05); }
.stat-card strong { color: var(--blue); font-size: 29px; letter-spacing: -.04em; }
.stat-card span { margin-top: 7px; color: var(--muted); font-size: 12px; line-height: 1.35; }

.split-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 84px; align-items: center; }
.visual-stack { position: relative; padding: 0 54px 50px 0; }
.main-visual { width: 100%; min-height: 520px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.floating-visual { position: absolute; right: 0; bottom: 0; width: 44%; height: 220px; object-fit: cover; border: 7px solid white; border-radius: 20px; box-shadow: var(--shadow); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 30px 0; }
.check-item { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 14px; font-weight: 800; }
.check-item span { width: 25px; height: 25px; display: grid; flex: 0 0 25px; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 5px; color: var(--blue); border-bottom: 2px solid var(--blue); font-size: 14px; font-weight: 900; }

.sectors-section { background: var(--soft); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.sector-card { position: relative; min-height: 205px; display: grid; grid-template-columns: 76px 1fr auto; grid-template-rows: auto 1fr; align-items: center; column-gap: 18px; row-gap: 18px; padding: 27px; overflow: hidden; color: var(--navy); text-align: left; border: 1px solid #d7e3f1; border-radius: 20px; background: linear-gradient(145deg, #fff 0%, #fbfdff 100%); cursor: pointer; box-shadow: 0 10px 25px rgba(3,28,70,.055); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease; }
.sector-card::after { content: ""; position: absolute; width: 118px; height: 118px; right: -58px; bottom: -66px; border-radius: 50%; background: radial-gradient(circle, rgba(10,88,190,.09), rgba(10,88,190,0) 70%); pointer-events: none; }
.sector-card:hover { transform: translateY(-5px); border-color: rgba(10,88,190,.42); box-shadow: 0 20px 42px rgba(3,28,70,.11); }
.sector-icon { width: 76px; height: 76px; display: grid; grid-column: 1; grid-row: 1; place-items: center; border: 1px solid #d7e8fc; border-radius: 20px; background: linear-gradient(145deg, #e9f4ff, #f4f9ff); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(10,88,190,.1); font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 38px; line-height: 1; transform: translateZ(0); transition: transform .22s ease, box-shadow .22s ease; }
.sector-card:hover .sector-icon, .sector-card.is-open .sector-icon { transform: scale(1.06); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 24px rgba(10,88,190,.16); }
.sector-plus { width: 38px; height: 38px; display: grid; grid-column: 3; grid-row: 1; place-items: center; align-self: center; color: white; border-radius: 50%; background: var(--blue); box-shadow: 0 8px 18px rgba(10,88,190,.2); font-size: 24px; font-weight: 400; line-height: 1; transition: transform .22s ease, background .22s ease; }
.sector-card:hover .sector-plus { transform: rotate(90deg); }
.sector-card strong { grid-column: 2; grid-row: 1; align-self: center; font-size: 18px; line-height: 1.28; letter-spacing: -.012em; }
.sector-description { max-height: 0; grid-column: 1 / -1; grid-row: 2; overflow: hidden; color: var(--muted); font-size: 14px; line-height: 1.62; opacity: 0; transform: translateY(-6px); transition: max-height .28s ease, opacity .25s ease, transform .25s ease; }
.sector-card.is-open { border-color: var(--blue); background: white; box-shadow: 0 20px 42px rgba(10,88,190,.14); }
.sector-card.is-open .sector-plus { background: var(--navy); transform: rotate(180deg); }
.sector-card.is-open .sector-description { max-height: 120px; opacity: 1; transform: translateY(0); }

.experiences-section { color: white; background: var(--navy); }
.light-heading h2 { color: white; }
.light-heading > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.experience-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 265px; gap: 14px; margin-top: 48px; }
.experience-card { position: relative; overflow: hidden; border-radius: 18px; background: var(--navy-2); }
.experience-card.feature { grid-row: span 2; }
.experience-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.experience-card:hover img { transform: scale(1.04); }
.experience-overlay { position: absolute; inset: auto 0 0; padding: 50px 22px 22px; background: linear-gradient(transparent, rgba(2,16,42,.95)); }
.experience-overlay span { color: var(--yellow); font-size: 11px; font-weight: 900; }
.experience-overlay h3 { margin: 5px 0; font-size: 22px; }
.experience-overlay p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.5; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.benefit-card { position: relative; min-height: 230px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; }
.benefit-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -45px; bottom: -55px; border-radius: 50%; background: #eef5ff; }
.benefit-card > span { display: inline-grid; width: 44px; height: 44px; place-items: center; color: white; border-radius: 12px; background: var(--navy); font-weight: 900; }
.benefit-card:nth-child(3n+2) > span { background: var(--blue); }
.benefit-card:nth-child(3n) > span { background: var(--green); }
.benefit-card h3 { margin: 26px 0 9px; color: var(--navy); font-size: 20px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.region-section { color: white; background: linear-gradient(115deg, #031c46, #063775); }
.region-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.region-copy h2 { color: white; }
.region-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.region-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.region-areas span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 11px; }
.city-map { position: relative; min-height: 460px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: radial-gradient(circle at center, rgba(50,168,237,.19), transparent 40%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 38px 38px, 38px 38px; }
.city-node { position: absolute; z-index: 2; min-width: 92px; padding: 10px 12px; color: white; text-align: center; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: #0a3978; font-size: 11px; font-weight: 800; box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.city-node.center { left: 50%; top: 50%; transform: translate(-50%,-50%); padding: 18px 22px; color: var(--navy); background: var(--yellow); border: 0; font-size: 14px; }
.city-1 { left: 8%; top: 12%; }.city-2 { right: 8%; top: 14%; }.city-3 { left: 10%; top: 44%; }.city-4 { right: 10%; top: 45%; }.city-5 { left: 17%; bottom: 12%; }.city-6 { right: 20%; bottom: 11%; }.city-7 { left: 42%; top: 9%; }
.map-line { position: absolute; left: 50%; top: 50%; width: 38%; height: 1px; transform-origin: left center; background: linear-gradient(90deg, rgba(248,196,0,.9), rgba(50,168,237,.12)); }
.line-a { transform: rotate(-140deg); }.line-b { transform: rotate(-36deg); }.line-c { transform: rotate(145deg); }.line-d { transform: rotate(35deg); }

.projection-section { background: var(--soft); }
.projection-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.projection-grid article { min-height: 150px; display: grid; place-content: center; padding: 20px; text-align: center; border-radius: 17px; background: var(--navy); }
.projection-grid article:nth-child(2), .projection-grid article:nth-child(6) { background: var(--blue); }
.projection-grid article:nth-child(3), .projection-grid article:nth-child(7) { background: var(--green); }
.projection-grid article:nth-child(4), .projection-grid article:nth-child(8) { background: #0d3975; }
.projection-grid strong { color: white; font-size: 33px; letter-spacing: -.04em; }
.projection-grid span { margin-top: 5px; color: rgba(255,255,255,.66); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.participant-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.participant-photo { position: relative; height: 520px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.participant-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; left: 20px; right: 20px; bottom: 20px; display: grid; padding: 17px; color: white; border-radius: 13px; background: rgba(3,28,70,.9); }
.photo-caption strong { font-size: 18px; }.photo-caption span { color: rgba(255,255,255,.62); font-size: 12px; }
.participant-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.participant-list span { padding: 14px; color: var(--navy); border-radius: 10px; background: var(--soft); font-size: 13px; font-weight: 800; }

.gallery-section { background: var(--soft); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.gallery-controls { display: flex; align-items: center; gap: 14px; }
.gallery-controls button { width: 46px; height: 46px; color: white; border: 0; border-radius: 50%; background: var(--navy); cursor: pointer; }
.gallery-controls span { color: var(--muted); font-size: 12px; font-weight: 900; }
.gallery-viewer { margin-top: 35px; }
.gallery-viewer > img { width: 100%; height: 600px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs button { height: 86px; padding: 0; overflow: hidden; border: 3px solid transparent; border-radius: 10px; background: transparent; cursor: pointer; opacity: .58; }
.gallery-thumbs button.active { border-color: var(--blue); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-top: 50px; }
.video-card { position: relative; height: 330px; overflow: hidden; border-radius: 20px; }
.video-card > img { width: 100%; height: 100%; object-fit: cover; }
.video-card > div { position: absolute; inset: 0; display: flex; align-items: end; gap: 15px; padding: 24px; color: white; background: linear-gradient(transparent, rgba(3,28,70,.94)); }
.play-button { width: 54px; height: 54px; display: grid; flex: 0 0 54px; place-items: center; color: var(--navy); border-radius: 50%; background: var(--yellow); }
.video-card p { display: grid; gap: 5px; margin: 0; }.video-card small { color: rgba(255,255,255,.63); }
blockquote { margin: 0; padding: 36px; border-radius: 20px; background: white; box-shadow: 0 12px 30px rgba(3,28,70,.06); }
.quote-mark { color: var(--yellow); font-family: Georgia, serif; font-size: 70px; line-height: .7; }
blockquote p { color: var(--navy); font-size: 22px; font-weight: 800; line-height: 1.4; }
blockquote footer { color: var(--muted); font-size: 12px; }

.partners-section { padding: 70px 0; border-top: 1px solid var(--line); background: white; }
.partners-inner { display: grid; grid-template-columns: .65fr 1.35fr; gap: 55px; align-items: center; }
.partners-inner h2 { margin: 0; color: var(--navy); font-size: 30px; line-height: 1.15; }
.partner-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.partner-logo, .partner-placeholder { min-height: 110px; display: grid; place-items: center; padding: 20px; text-align: center; border: 1px solid var(--line); border-radius: 13px; background: #fbfdff; }
.partner-logo img { max-height: 65px; }.partner-placeholder { color: #9aa6b6; font-size: 12px; line-height: 1.45; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--navy); text-align: left; border: 0; background: transparent; font-size: 16px; font-weight: 900; cursor: pointer; }
.faq-item button b { color: var(--blue); font-size: 24px; font-weight: 400; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 45px 23px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 160px; }

.proposal-section { position: relative; padding: 110px 0; color: white; isolation: isolate; background: url('assets/entrada-feira.png') center / cover no-repeat; }
.proposal-backdrop { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(3,20,52,.97), rgba(3,28,70,.87)); }
.proposal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.proposal-copy h2 { margin: 0 0 22px; font-size: clamp(42px, 4.5vw, 64px); line-height: 1; letter-spacing: -.045em; }
.proposal-copy > p:not(.eyebrow) { margin: 0; max-width: 610px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; }
.proposal-points { display: grid; gap: 10px; margin-top: 30px; color: white; font-size: 14px; font-weight: 800; }
.proposal-points span::first-letter { color: var(--yellow); }
.proposal-form-card { color: var(--ink); }
.proposal-form-card h3 { margin: 0 0 20px; color: var(--navy); font-size: 29px; }
fieldset { display: flex; gap: 17px; margin: 1px 0 2px; padding: 0; border: 0; }
legend { margin-bottom: 10px; color: var(--navy); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
fieldset label { display: flex; align-items: center; gap: 7px; font-size: 11px; }
fieldset input { width: 15px; height: 15px; }
.proposal-form-card .success-state { min-height: 485px; }

.site-footer { position: relative; padding: 70px 0 28px; color: white; background: #02142f; }
.brand-stripes { position: absolute; inset: 0 0 auto; height: 5px; display: flex; }
.brand-stripes span:nth-child(1) { flex: 3; background: var(--blue); }.brand-stripes span:nth-child(2) { flex: 2; background: var(--green); }.brand-stripes span:nth-child(3) { flex: 1; background: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .7fr .9fr; gap: 55px; }
.footer-brand img { width: 250px; padding: 8px 13px; border-radius: 12px; background: white; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 13px; }
.footer-grid h3 { margin: 0 0 18px; color: #73caff; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid p, .footer-grid a { display: block; margin: 0 0 10px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.55; }
.footer-grid strong { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; color: rgba(255,255,255,.36); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 9px; padding: 13px 17px; color: white; border-radius: 999px; background: var(--green); box-shadow: 0 13px 35px rgba(0,154,73,.34); font-size: 12px; }
.floating-contact span { color: white; font-size: 11px; }

@media (max-width: 1050px) {
  .main-nav { gap: 19px; }.hero-content { grid-template-columns: 1fr .8fr; gap: 35px; }.hero h1 { font-size: 52px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }.split-layout { gap: 45px; }.experience-grid { grid-template-columns: 1.1fr 1fr; }.experience-card:nth-child(5) { grid-column: span 2; }.region-layout { gap: 45px; }.proposal-layout { gap: 45px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 34px, 680px); }.section-pad, .proof-section { padding: 78px 0; }
  .site-header { height: 70px; padding: 0 17px; }.brand { width: 104px; height: 60px; }.brand img { width: auto; height: 57px; }
  .menu-button { display: block; cursor: pointer; }.main-nav { position: absolute; left: 17px; right: 17px; top: 76px; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }.main-nav a { padding: 13px 10px; }.main-nav a::after { display: none; }.nav-cta { margin-top: 7px; }
  .hero, .hero-content { min-height: auto; }.hero-content { grid-template-columns: 1fr; padding: 60px 0 64px; }.hero-overlay { background: linear-gradient(rgba(3,18,48,.93), rgba(3,27,70,.9)); }.hero-logo-card { width: 270px; }.hero h1 { font-size: clamp(42px, 11vw, 58px); }.lead-card { max-width: 560px; }
  .countdown-inner { min-height: 150px; flex-direction: column; justify-content: center; }.countdown-numbers { gap: 8px; }.countdown-numbers span { min-width: 55px; }.countdown-numbers b { font-size: 25px; }
  .proof-layout, .split-layout, .region-layout, .participant-layout, .faq-layout, .proposal-layout, .partners-inner { grid-template-columns: 1fr; gap: 45px; }
  .proof-image { grid-row: 2; }.proof-stats { grid-row: 3; }.visual-stack { padding-right: 35px; }.main-visual { min-height: 430px; }.floating-visual { height: 180px; }
  .sector-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }.sector-card { grid-template-columns: 68px 1fr auto; min-height: 190px; padding: 22px; column-gap: 15px; }.sector-icon { width: 68px; height: 68px; border-radius: 18px; font-size: 34px; }.sector-card strong { font-size: 16px; }.experience-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; }.experience-card.feature { grid-column: span 2; grid-row: auto; }.experience-card:nth-child(5) { grid-column: span 2; }
  .city-map { min-height: 430px; }.projection-grid { grid-template-columns: repeat(2, 1fr); }.participant-photo { height: 460px; }
  .gallery-viewer > img { height: 430px; }.gallery-thumbs { grid-template-columns: repeat(3, 1fr); }.testimonial-row { grid-template-columns: 1fr; }.partner-track { grid-template-columns: repeat(3, 1fr); }
  .proposal-copy { max-width: 650px; }.footer-grid { grid-template-columns: 1.3fr 1fr; }.footer-bottom { gap: 20px; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 28px); }.section-pad, .proof-section { padding: 66px 0; }
  .hero-content { padding: 46px 0 50px; gap: 38px; }.hero-logo-card { width: 225px; margin-bottom: 22px; }.hero h1 { font-size: 42px; }.hero-lead { font-size: 17px; }.hero-highlights { display: grid; grid-template-columns: 1fr; }.hero-actions { display: grid; }.button { width: 100%; }
  .lead-card, .proposal-form-card { padding: 23px 18px; border-radius: 17px; }.lead-card h2 { font-size: 25px; }.field-row { grid-template-columns: 1fr; }
  .countdown-inner { gap: 19px; }.countdown-numbers { width: 100%; justify-content: space-between; gap: 3px; }.countdown-numbers span { min-width: 45px; }.countdown-numbers b { font-size: 23px; }.countdown-numbers small { font-size: 8px; }
  .section-heading h2, .split-layout h2, .region-copy h2, .participant-layout h2 { font-size: 39px; }.section-heading > p:not(.eyebrow), .section-lead, .region-copy > p:not(.eyebrow) { font-size: 15px; }
  .proof-layout { gap: 30px; }.proof-image { height: 360px; }.stats-grid { grid-template-columns: 1fr 1fr; }.stat-card { min-height: 115px; padding: 16px; }.stat-card strong { font-size: 25px; }
  .visual-stack { padding: 0 20px 65px 0; }.main-visual { min-height: 360px; }.floating-visual { width: 55%; height: 160px; border-width: 5px; }.check-grid { grid-template-columns: 1fr; }
  .sector-grid, .benefit-grid { grid-template-columns: 1fr; }.sector-grid { gap: 13px; }.sector-card { grid-template-columns: 66px 1fr auto; min-height: 132px; padding: 19px; column-gap: 14px; row-gap: 15px; border-radius: 17px; }.sector-icon { width: 66px; height: 66px; border-radius: 17px; font-size: 34px; }.sector-plus { width: 34px; height: 34px; font-size: 21px; }.sector-card strong { font-size: 16px; }.sector-description { font-size: 13px; }.experience-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 290px; }.experience-card.feature, .experience-card:nth-child(5) { grid-column: auto; }.benefit-card { min-height: 210px; }
  .city-map { min-height: 520px; }.city-node { min-width: 78px; padding: 9px 8px; font-size: 9px; }.city-node.center { font-size: 12px; }.city-1 { left: 3%; }.city-2 { right: 3%; }.city-3 { left: 2%; }.city-4 { right: 2%; }.city-7 { left: 37%; }.projection-grid { gap: 9px; }.projection-grid article { min-height: 125px; }.projection-grid strong { font-size: 27px; }
  .participant-photo { height: 420px; }.participant-list { grid-template-columns: 1fr 1fr; gap: 8px; }.participant-list span { padding: 12px 8px; font-size: 11px; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }.gallery-viewer > img { height: 390px; }.gallery-thumbs button { height: 65px; }.video-card { height: 290px; } blockquote { padding: 27px; } blockquote p { font-size: 19px; }
  .partner-track { grid-template-columns: 1fr; }.partner-logo, .partner-placeholder { min-height: 90px; }.faq-answer p { padding-right: 8px; }.proposal-section { padding: 70px 0; }.proposal-copy h2 { font-size: 42px; } fieldset { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 31px; }.footer-bottom { flex-direction: column; margin-top: 36px; }.floating-contact { right: 14px; bottom: 14px; }.floating-contact b { display: none; }
}

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