:root {
  --navy: #0d2348;
  --blue: #1a3d8f;
  --mid: #2558c4;
  --sky: #e8f1fb;
  --sky2: #cfe0f8;
  --white: #fff;
  --off: #f5f8fe;
  --text: #0f1e3a;
  --muted: #566480;
  --light: #8a9ab8;
  --border: rgba(13, 35, 72, .1);
  --gold: #b8892a;
  --gold2: #d4a84e;
  --sh: 0 4px 24px rgba(13, 35, 72, .08);
  --shm: 0 8px 32px rgba(13, 35, 72, .12);
  --shl: 0 20px 60px rgba(13, 35, 72, .16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden
}

::selection {
  background: var(--mid);
  color: #fff
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--sky)
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px
}

/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 16px rgba(13, 35, 72, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13, 35, 72, .13)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.nav-logo-text {
  line-height: 1.25
}

.nav-logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em
}

.nav-logo-sub {
  display: block;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mid);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left
}

.nav-links a:hover {
  color: var(--navy)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem
}

.btn-outline-nav {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  padding: .45rem 1.1rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.btn-outline-nav:hover {
  border-color: var(--mid);
  color: var(--mid)
}

.btn-solid-nav {
  background: var(--navy);
  color: #fff;
  padding: .45rem 1.2rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13, 35, 72, .25)
}

.btn-solid-nav:hover {
  background: var(--mid);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px
}

.hero-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 25, 65, .88) 0%, rgba(18, 50, 130, .78) 50%, rgba(12, 30, 80, .85) 100%)
}

.hero-parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px
}

.hero-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 5.5vh;
  background: rgba(0, 0, 0, .48);
  z-index: 1;
  pointer-events: none
}

.hero-bar.top {
  top: 70px
}

.hero-bar.bottom {
  bottom: 0
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  align-items: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.8rem
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem
}

.hero-title em {
  font-style: italic;
  color: #93c5fd
}

.hero-theme {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
  border-left: 3px solid var(--gold2);
  padding-left: 1rem;
  font-style: italic
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 2.5rem
}

.hm {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .83rem;
  color: rgba(255, 255, 255, .8)
}

.hm svg {
  opacity: .65;
  flex-shrink: 0
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-hp {
  background: #fff;
  color: var(--navy);
  padding: .85rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.btn-hp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28)
}

.btn-hs {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.btn-hs:hover {
  background: rgba(255, 255, 255, .2)
}

.btn-hg {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  padding: .85rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 22px rgba(184, 137, 42, .35)
}

.btn-hg:hover {
  transform: translateY(-3px);
  opacity: .92
}

/* hero floating card */
.hero-card {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  animation: float 7s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

.hero-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem
}

/* Logo on dark glass */
.hero-card-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: .3rem
}

.hero-card-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  margin-bottom: 1.8rem
}

.dl-box {
  background: rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center
}

.dl-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .3rem
}

.dl-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fde68a
}

.dl-sub {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .2rem
}

.scroll-hint {
  position: absolute;
  bottom: 6.5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .4);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase
}

.sa {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, .35);
  border-bottom: 2px solid rgba(255, 255, 255, .35);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0)
  }

  50% {
    transform: rotate(45deg) translateY(6px)
  }
}

/* ═══ STATS ═══ */
.stats {
  background: var(--navy);
  padding: 1.4rem 2.5rem
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem
}

.stat {
  text-align: center;
  color: #fff
}

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1
}

.stat-l {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: .2rem
}

/* ═══ SECTION BASE ═══ */
section {
  padding: 6rem 2.5rem
}

.container {
  max-width: 1200px;
  margin: 0 auto
}

.eyebrow {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .6rem
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--mid)
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem
}

.section-title em {
  font-style: italic;
  color: var(--mid)
}

/* ═══ PARALLAX DIVIDERS ═══ */
.par-section {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.par-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform
}

.par-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 65, .72)
}

.par-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem
}

.par-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: .8rem
}

.par-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8
}

.par-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ═══ SOBRE ═══ */
#sobre {
  background: var(--off)
}

.sobre-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem
}

.sobre-text p {
  color: var(--muted);
  line-height: 1.92;
  font-size: .95rem;
  margin-bottom: 1.1rem;
  text-align: justify
}

.sobre-grid > div > p {
  color: var(--muted);
  line-height: 1.9;
  font-size: .95rem;
  margin-bottom: 1.2rem;
  text-align: justify
}

.hcards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem
}

.hcard {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh);
  transition: all .3s
}

.hcard:hover {
  box-shadow: var(--shm);
  border-color: var(--sky2);
  transform: translateY(-2px)
}

.hcard-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center
}

.hcard-ico svg {
  color: var(--mid)
}

.hcard h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem
}

.hcard p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65
}

.sobre-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

.scard {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh)
}

.scard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .7rem
}

.scard p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75
}

.scard-a {
  background: linear-gradient(145deg, var(--navy), var(--blue))
}

.scard-a h3 {
  color: #fff
}

.scard-a p {
  color: rgba(255, 255, 255, .7)
}

.scard-a .big {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1;
  margin-bottom: .3rem
}

/* ═══ CTA BAND ═══ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 3rem 2.5rem
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem
}

.cta-band-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem
}

.cta-band-text p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7)
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center
}

.btn-w {
  background: #fff;
  color: var(--navy);
  padding: .8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-g {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff;
  padding: .8rem 1.8rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 18px rgba(184, 137, 42, .4)
}

.btn-g:hover {
  transform: translateY(-2px);
  opacity: .9
}

/* ═══ TRACKS ═══ */
#temas {
  background: var(--white)
}

.tracks-head {
  text-align: center;
  margin-bottom: 3.5rem
}

.tracks-head p {
  color: var(--muted);
  max-width: 520px;
  margin: .8rem auto 0;
  line-height: 1.85
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.3rem
}

.tcard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.tcard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--blue));
  transform: scaleX(0);
  transition: transform .35s;
  transform-origin: left
}

.tcard:hover {
  border-color: var(--sky2);
  box-shadow: var(--shm);
  transform: translateY(-4px)
}

.tcard:hover::after {
  transform: scaleX(1)
}

.ti {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s
}

.tcard:hover .ti {
  background: var(--sky2)
}

.ti svg {
  color: var(--mid)
}

.tn {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: .3rem
}

.tcard h3 {
  font-size: .93rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: .5rem
}

.tcard p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65
}

/* ═══ LOCAL ═══ */
#local {
  background: var(--off)
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem
}

.local-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shl);
  position: relative
}

.local-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 380px
}

.loc-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shm)
}

.loc-badge svg {
  color: var(--mid)
}

.loc-badge span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy)
}

.local-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: .95rem;
  margin-bottom: 1.1rem;
  text-align: justify
}

.local-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--mid);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  border-bottom: 2px solid var(--sky2);
  padding-bottom: .15rem;
  transition: all .2s
}

.local-link:hover {
  color: var(--navy);
  border-color: var(--mid)
}

/* ═══ DIRETRIZES ═══ */
#diretrizes {
  background: var(--white)
}

.dir-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem
}

.dir-sticky {
  position: sticky;
  top: 82px
}

.dir-panel {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  margin-bottom: 1.4rem
}

.dir-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .8rem
}

.dir-panel p {
  font-size: .87rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.82;
  margin-bottom: 1.3rem
}

.dir-checks {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.dc {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .83rem;
  color: rgba(255, 255, 255, .85)
}

.dc svg {
  flex-shrink: 0;
  color: #6ee7b7
}

.dir-items {
  display: flex;
  flex-direction: column;
  gap: 1.1rem
}

.dcard {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.7rem;
  display: flex;
  gap: 1.4rem;
  transition: all .25s
}

.dcard:hover {
  box-shadow: var(--shm);
  border-color: var(--sky2);
  background: #fff
}

.dnum {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--sky2);
  flex-shrink: 0;
  line-height: 1;
  min-width: 32px
}

.dcard h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem
}

.dcard p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.72
}

/* ═══ MANUSCRITO ═══ */
#manuscrito {
  background: var(--off)
}

.ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem
}

.ms-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh)
}

.ms-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem
}

.ms-card h3 svg {
  color: var(--mid)
}

.ms-card p,
.ms-card li {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.8
}

.ms-card ul {
  padding-left: 1.2rem;
  margin-top: .5rem
}

.ms-card ul li {
  margin-bottom: .4rem
}

.ms-note {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap
}

.ms-note svg {
  flex-shrink: 0;
  color: #93c5fd;
  width: 36px;
  height: 36px
}

.ms-note p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8
}

.ms-note strong {
  color: #fff
}

/* ═══ DATAS ═══ */
#datas {
  background: var(--white)
}

.datas-head {
  text-align: center;
  margin-bottom: 3.5rem
}

.tl {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .3rem
}

.tl-item {
  display: flex;
  gap: 1.6rem
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0
}

.tl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mid);
  flex-shrink: 0;
  transition: background .25s
}

.tl-item:hover .tl-dot {
  background: var(--mid)
}

.tl-line {
  width: 2px;
  flex: 1;
  min-height: 12px;
  background: linear-gradient(to bottom, var(--sky2), transparent);
  margin-top: 3px
}

.tl-card {
  flex: 1;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: .8rem;
  transition: all .25s
}

.tl-card:hover {
  box-shadow: var(--shm);
  border-color: var(--mid);
  background: #fff
}

.tl-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem
}

.tl-card h4 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem
}

.tl-card p {
  font-size: .8rem;
  color: var(--muted)
}

.tag {
  display: inline-block;
  margin-top: .45rem;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  padding: .18rem .6rem
}

.ta {
  background: #fff4e0;
  color: #92400e
}

.ti2 {
  background: var(--sky);
  color: var(--mid)
}

.tm {
  background: #dcfce7;
  color: #166534
}

/* ═══ FORMULÁRIO ═══ */
#submissao {
  background: var(--off)
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem
}

.form-sidebar {
  position: sticky;
  top: 82px
}

.fscard {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 2.2rem;
  color: #fff;
  margin-bottom: 1.3rem
}

.fscard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: .7rem
}

.fscard p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.82
}

.contact-block {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh)
}

.contact-block h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em
}

.crow {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem
}

.crow svg {
  color: var(--mid);
  flex-shrink: 0
}

.crow a {
  font-size: .83rem;
  color: var(--muted);
  text-decoration: none
}

.crow a:hover {
  color: var(--mid)
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shl);
  overflow: hidden
}

.form-head {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  padding: 1.8rem 2.4rem;
  color: #fff
}

.form-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600
}

.form-head p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .68);
  margin-top: .3rem
}

.form-body {
  padding: 2.4rem
}

.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem
}

.fi {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.fi.full {
  grid-column: 1/-1
}

.fi label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy)
}

.fi input,
.fi select,
.fi textarea {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: .75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: all .2s;
  appearance: none
}

.fi input:focus,
.fi select:focus,
.fi textarea:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(37, 88, 196, .1);
  background: #fff
}

.fi textarea {
  resize: vertical;
  min-height: 140px
}

.fi select {
  cursor: pointer
}

.wc {
  text-align: right;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .2rem
}

.wc.warn {
  color: #d97706
}

.wc.over {
  color: #dc2626
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem
}

.rl {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .95rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: .84rem;
  color: var(--muted);
  transition: all .2s;
  user-select: none
}

.rl input[type=radio] {
  display: none
}

.rl:has(input:checked) {
  border-color: var(--mid);
  background: var(--sky);
  color: var(--navy);
  font-weight: 600
}

.rl:hover {
  border-color: var(--mid)
}

.btn-submit {
  width: 100%;
  margin-top: 1.4rem;
  background: linear-gradient(135deg, var(--navy), var(--mid));
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 6px 22px rgba(13, 35, 72, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 35, 72, .35)
}

.fn {
  font-size: .74rem;
  color: var(--muted);
  text-align: center;
  margin-top: .9rem;
  line-height: 1.7
}

.fn a {
  color: var(--mid)
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem
}

.si {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem
}

.si svg {
  color: #fff
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: .5rem
}

.form-success p {
  color: var(--muted);
  font-size: .92rem
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--navy);
  padding: 3.5rem 2.5rem 2rem;
  color: rgba(255, 255, 255, .65)
}

.fi2 {
  max-width: 1200px;
  margin: 0 auto
}

.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.fb-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem
}

/* Footer logo on dark navy: screen blend removes dark bg */
.fb-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.4) contrast(1.1)
}

.fb-logo-t .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block
}

.fb-logo-t .sub {
  font-size: .6rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
  display: block
}

.footer-brand p {
  font-size: .83rem;
  line-height: 1.85;
  max-width: 300px
}

.fc h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .38);
  margin-bottom: .9rem
}

.fc a {
  display: block;
  font-size: .83rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  margin-bottom: .45rem;
  transition: color .2s
}

.fc a:hover {
  color: #fff
}

.fbot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .76rem
}

.fbot a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none
}

.fbot a:hover {
  color: rgba(255, 255, 255, .7)
}

/* ═══ COOKIE ═══ */
#cookie {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 2000;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s
}

#cookie.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none
}

#cookie p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .75);
  flex: 1;
  min-width: 200px
}

#cookie p a {
  color: #93c5fd
}

.bc {
  background: #fff;
  color: var(--navy);
  border: none;
  padding: .5rem 1.3rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap
}

.bc:hover {
  opacity: .85
}

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ═══ BACK TO TOP ═══ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25)
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.back-to-top:hover {
  background: var(--mid);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.fi input[type="file"] {
  background: #fff;
  padding: .5rem .8rem;
  cursor: pointer
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px) {

  .hero-inner,
  .sobre-grid,
  .local-grid,
  .dir-layout,
  .form-layout,
  .ft {
    grid-template-columns: 1fr
  }

  .dir-sticky,
  .form-sidebar {
    position: static
  }

  .hero-card {
    max-width: 420px
  }

  .ms-grid {
    grid-template-columns: 1fr
  }

  .ms-note {
    grid-column: auto
  }
}

@media(max-width:768px) {
  section {
    padding: 4rem 1.5rem
  }

  #navbar {
    padding: 0 1.2rem
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1.2rem;
    box-shadow: var(--shm);
    border-bottom: 1.5px solid var(--border)
  }

  .nav-links.open {
    display: flex
  }

  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-inner {
    padding: 3rem 1.5rem
  }

  .fg {
    grid-template-columns: 1fr
  }

  .form-body {
    padding: 1.5rem
  }

  .ft {
    grid-template-columns: 1fr
  }

  .stats-inner,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start
  }
}