@font-face {
  font-family: 'Bronova';
  src: url('../fonts/Bronova-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: 'Bronova';
  src: url('../fonts/Bronova-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap
}

@font-face {
  font-family: 'Mark';
  src: url('../fonts/mark_my_words.ttf') format('truetype');
  font-display: swap
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap
}

@font-face {
  font-family: 'Mont';
  src: url('../fonts/Montserrat-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap
}

:root {
  --magenta: #AF004D;
  --magenta-deep: #950540;
  --orange: #EF9700;
  --blue: #004F7E;
  --yellow: #F4B400;
  --cream: #F8EDE0;
  --cream-2: #F1E2CF;
  --pink: #C8A2B5;
  --ink: #3A1020;
  --display: 'Bronova', system-ui, sans-serif;
  --body: 'Bronova', system-ui, sans-serif;
  --script: 'Mark', cursive;
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

svg {
  display: block
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.01em
}

.display {
  font-family: var(--display)
}

.script {
  font-family: var(--script);
  font-weight: 400
}

/* ===== decorative helpers ===== */
.drop {
  position: absolute;
  pointer-events: none
}

.leopard-band {
  background: url('../img/leopard.png');
  background-size: 340px;
  opacity: .85
}

/* ===== header ===== */
header {
  position: relative;
  background: var(--cream);
  z-index: 20
}

.corner-tl {
  position: absolute;
  top: -10px;
  left: -20px;
  width: 340px;
  pointer-events: none
}

.corner-tr {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 320px;
  pointer-events: none
}

.nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 0 26px;
  z-index: 3
}

.nav .logo img {
  height: 74px;
  width: auto
}

.nav .tagline {
  font-family: var(--script);
  color: var(--magenta);
  font-size: 26px;
  margin-top: -4px;
  line-height: 1
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--magenta)
}

.menu a {
  position: relative;
  padding: 4px 0;
  white-space: nowrap
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 0;
  background: var(--yellow);
  border-radius: 3px;
  transition: width .25s
}

.menu a:hover::after {
  width: 100%
}

.menu .free {
  background: var(--magenta);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1
}

.menu .free::after {
  display: none
}

.burger {
  display: none;
  position: absolute;
  right: 24px;
  top: 36px;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 4
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--magenta);
  border-radius: 3px
}

/* ===== hero (banner oficial full-bleed) ===== */
.hero-banner {
  display: block;
  width: 100%
}

.hero-banner picture {
  display: block;
  width: 100%
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block
}

/* ===== evento intro (logo + paragrafo) ===== */
.evento-intro {
  background: #fff;
  position: relative
}

/* .ei-strip {
      height: 20px;
      width: 100%;
      background: url('../img/intro-strip.png') center/cover;
      box-shadow: inset 0 -1px 0 rgba(58, 16, 32, .10)
    } */

.ei-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0
}

.ei-logo {
  display: flex;
  justify-content: center
}

.ei-logo img {
  width: 360px;
  max-width: 100%;
  height: auto
}

.ei-text {
  position: relative
}

.ei-drops {
  position: absolute;
  top: -30px;
  left: 8px;
  width: 56px
}

.ei-text p {
  font-family: 'Mont', sans-serif;
  font-weight: 600;
  color: #004F7E;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
  margin: 0
}

.ei-text p strong {
  font-weight: 800;
  color: #AF004D
}

@media (max-width:760px) {
  .ei-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0
  }

  .ei-logo img {
    width: 250px
  }

  .ei-drops {
    position: static;
    display: block;
    margin: 0 auto 8px
  }

  .ei-text p {
    font-size: 18px
  }
}

/* ===== generic band ===== */
.band {
  position: relative;
  padding: 96px 0
}

.band.cream {
  background: var(--cream)
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--magenta);
  font-size: 18px;
  margin-bottom: 14px
}

.section-eyebrow .pin {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, .28)
}

/* intro + headline */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

/* centered intro (no side photo) */
.intro-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center
}

.intro-center .section-eyebrow {
  justify-content: center
}

.intro-center p {
  margin-left: auto;
  margin-right: auto
}

.intro h2 {
  font-size: clamp(46px, 6vw, 88px);
  color: var(--magenta);
  line-height: .95
}

.intro h2 .o {
  color: var(--blue)
}

.intro .big {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--ink);
  margin: 18px 0 16px;
  line-height: 1.25
}

.intro p {
  color: #6a4456;
  font-size: 17px;
  max-width: 50ch
}

.intro-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 22px 44px -22px rgba(80, 0, 30, .45);
  aspect-ratio: 5/5
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* pilares */
.pilares {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px
}

.pilar {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px -24px rgba(80, 0, 30, .4);
  display: flex;
  flex-direction: column;
  transition: transform .25s
}

.pilar:hover {
  transform: translateY(-8px)
}

.pilar .pic {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden
}

.pilar .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.pilar .stripe {
  height: 12px
}

.pilar.c1 .stripe {
  background: var(--magenta)
}

.pilar.c2 .stripe {
  background: var(--blue)
}

.pilar.c3 .stripe {
  background: var(--green, var(--orange))
}

.pilar.c4 .stripe {
  background: var(--yellow)
}

.pilar .b {
  padding: 22px 22px 28px
}

.pilar h3 {
  font-size: 23px;
  color: var(--magenta);
  margin-bottom: 8px
}

.pilar.c2 h3 {
  color: var(--blue)
}

.pilar p {
  font-size: 14.5px;
  color: #6a4456
}

/* wave ribbons divider */
.waves {
  display: block;
  width: 100%;
  height: 120px
}

.waves.flip {
  transform: scaleY(-1)
}

/* homenagem banner (oficial full-bleed) */
.homenagem-banner {
  display: block;
  width: 100%
}

.homenagem-banner picture {
  display: block;
  width: 100%
}

.homenagem-banner img {
  width: 100%;
  height: auto;
  display: block
}

/* homenagem (magenta) */
.homenagem {
  position: relative;
  background: var(--magenta);
  color: var(--cream);
  overflow: hidden
}

.homenagem .le-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 300px;
  opacity: .12
}

.hom-seal {
  display: flex;
  justify-content: center;
  margin-bottom: -60px;
  position: relative;
  z-index: 5
}

.hom-seal svg {
  width: 170px;
  height: 170px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .28))
}

.hom-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3
}

.hom-text .section-eyebrow {
  color: var(--yellow)
}

.hom-text .section-eyebrow .pin {
  background: var(--yellow)
}

.hom-text h2 {
  font-size: clamp(40px, 5.4vw, 76px);
  color: #fff;
  margin: 8px 0 22px
}

.hom-text h2 em {
  font-style: normal;
  color: var(--yellow)
}

.hom-text p {
  color: #F4D9C7;
  font-size: 17px;
  max-width: 50ch;
  margin-bottom: 14px
}

.hom-text strong {
  color: #fff
}

.hom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px
}

.hom-tags span {
  border: 2px solid rgba(248, 237, 224, .45);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 999px
}

.hom-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px
}

.hom-media .halo {
  position: absolute;
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, rgba(244, 180, 0, 0) 62%);
  opacity: .5
}

.hom-media img {
  position: relative;
  width: 84%;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, .45));
  animation: float 6s ease-in-out infinite
}

@keyframes float {

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

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

/* expositores */
.expo-head {
  max-width: 60ch;
  margin-bottom: 18px
}

.expo-head h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  color: var(--magenta);
  margin-bottom: 16px
}

.expo-head p {
  color: #6a4456;
  font-size: 18px
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px
}

.carousel .arrow {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background: var(--cream);
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  transition: background .2s, color .2s
}

.carousel .arrow:hover {
  background: var(--blue);
  color: #fff
}

.expo-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.expo-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  box-shadow: 0 18px 36px -24px rgba(80, 0, 30, .4);
  transition: transform .3s
}

.expo-card:hover {
  transform: translateY(-6px)
}

.expo-card .bgwash {
  position: absolute;
  inset: 0;
  background: var(--cream-2)
}

.expo-card img {
  position: absolute;
  width: 74%;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  transition: transform .4s;
  filter: drop-shadow(0 14px 18px rgba(80, 0, 30, .25))
}

.expo-card:hover img {
  transform: translate(-50%, -50%) scale(1.06) rotate(-2deg)
}

.expo-card .cap {
  position: relative;
  z-index: 2
}

.expo-card .cap span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange)
}

.expo-card .cap h3 {
  font-size: 22px;
  color: var(--magenta);
  margin-top: 2px
}

.soon-pill {
  margin: 42px auto 0;
  max-width: 680px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  background: var(--yellow);
  border-radius: 18px;
  padding: 20px 26px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--magenta-deep);
  text-align: center
}

/* programação */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center
}

.prog-grid h2 {
  font-size: clamp(38px, 4.6vw, 64px);
  color: var(--magenta);
  margin-bottom: 20px
}

.prog-grid p {
  color: #6a4456;
  font-size: 17px;
  max-width: 46ch
}

.prog-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.prog-list .row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 26px -22px rgba(80, 0, 30, .5)
}

.prog-list .row .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--cream-2)
}

.prog-list .row b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink)
}

.prog-soon {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--magenta);
  font-size: 15px
}

.prog-soon .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--magenta);
  animation: pulse 1.6s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(175, 0, 77, .5)
  }

  70% {
    box-shadow: 0 0 0 10px rgba(175, 0, 77, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(175, 0, 77, 0)
  }
}

/* notícias */
.news-head h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  color: var(--magenta);
  margin-bottom: 8px
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 34px
}

.news-card {
  background: var(--magenta);
  border-radius: 26px;
  padding: 22px;
  color: var(--cream)
}

.news-card a.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease
}

.news-card a.card-link:hover {
  transform: translateY(-3px)
}

.news-card a.card-link:hover .via {
  text-decoration: underline
}

.news-card .ph {
  aspect-ratio: 16/10;
  background: var(--cream);
  border-radius: 16px;
  position: relative;
  overflow: hidden
}

.news-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(175, 0, 77, .05) 0 16px, transparent 16px 32px)
}

.news-card .ph .ig {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 7px 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--magenta)
}

.news-card .ig .glyph {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5)
}

.news-card .b {
  padding: 18px 6px 6px
}

.news-card .b h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 8px
}

.news-card .b p {
  color: #F4D9C7;
  font-size: 15px
}

.news-card .b .via {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--yellow)
}

/* como chegar */
.chegar-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
  align-items: stretch
}

.chegar-info {
  background: var(--magenta);
  border-radius: 26px;
  padding: 40px;
  color: var(--cream)
}

.chegar-info .section-eyebrow {
  color: var(--yellow)
}

.chegar-info .section-eyebrow .pin {
  background: var(--yellow)
}

.chegar-info h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 24px
}

.addr {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.addr .item {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.addr .item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--magenta);
  font-size: 20px
}

.addr .item .k {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow)
}

.addr .item .v {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: #fff
}

.map-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 6px solid var(--magenta);
  min-height: 420px
}

.map-card img,
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -100%);
  z-index: 3;
  width: 92px
}

/* footer */
.foot-waves {
  display: block;
  width: 100%;
  height: 130px
}

footer {
  position: relative;
  background: var(--magenta);
  color: var(--cream);
  padding: 70px 0 40px;
  overflow: hidden
}

.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start
}

.foot-brand img {
  height: 120px;
  width: auto;
  margin-bottom: 14px
}

.foot-brand p {
  color: #F4D9C7;
  max-width: 34ch;
  font-size: 15px
}

.foot-col h4 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px
}

.foot-col a {
  display: block;
  padding: 6px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  transition: color .2s
}

.foot-col a:hover {
  color: var(--yellow)
}

.foot-social a {
  display: flex;
  align-items: center;
  gap: 10px
}

.foot-social a .g {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--cream);
  color: var(--magenta);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--display)
}

.foot-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 237, 224, .2);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #E7BFAE;
  font-size: 13px;
  font-family: var(--display);
  font-weight: 500
}

.foot-bottom b {
  color: var(--yellow)
}

/* reveal */
.reveal {
  transition: opacity .7s cubic-bezier(.2, .6, .2, 1), transform .7s cubic-bezier(.2, .6, .2, 1)
}

.reveal.armed {
  opacity: 0;
  transform: translateY(26px)
}

.reveal.armed.in {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .08s
}

.reveal.d2 {
  transition-delay: .16s
}

.reveal.d3 {
  transition-delay: .24s
}

.reveal.d4 {
  transition-delay: .32s
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--magenta);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7, 0, .2, 1)
}

.mobile-menu.open {
  transform: translateY(0)
}

.mobile-menu a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(248, 237, 224, .16)
}

.mobile-menu .close {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 34px;
  border: 0;
  background: none;
  color: var(--cream);
  cursor: pointer
}

@media (max-width:1000px) {

  .hero-grid,
  .intro-grid,
  .hom-grid,
  .prog-grid,
  .chegar-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .pilares {
    grid-template-columns: repeat(2, 1fr)
  }

  .expo-track {
    grid-template-columns: 1fr 1fr
  }

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

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .hom-media {
    min-height: 360px
  }
}

@media (max-width:720px) {
  .wrap {
    padding: 30px 20px
  }

  .menu {
    display: none
  }

  .burger {
    display: flex
  }

  .nav {
    padding: 22px 0
  }

  .band {
    padding: 0
  }

  .pilares,
  .expo-track {
    grid-template-columns: 1fr
  }

  .carousel .arrow {
    display: none
  }

  .foot-top {
    grid-template-columns: 1fr
  }

  .corner-tl,
  .corner-tr {
    width: 200px
  }
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .reveal.armed {
    opacity: 1;
    transform: none;
    transition: none
  }

  .hom-media img {
    animation: none
  }
}

.hide {
  display: none;
}

/* fundos com cores sólidas (textura de papel removida) */
body {
  background-color: var(--cream)
}
