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

:root {
  --gold: #8B6914;
  --gold-light: #C9A227;
  --gold-dim: rgba(139,105,20,0.15);
  --dark: #080808;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --white: #ffffff;
  --gray: #888;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* CAMPO EM PERSPETIVA */
.hero__field {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  perspective: 700px;
}
.field__surface {
  width: 160%; height: 85%;
  transform: rotateX(58deg) translateY(2%);
  transform-origin: bottom center;
  position: relative;
  background: repeating-linear-gradient(
    180deg,
    rgba(40,48,38,0.28) 0px, rgba(40,48,38,0.28) 60px,
    rgba(30,38,28,0.18) 60px, rgba(30,38,28,0.18) 120px
  );
}
.field__stripe {
  display: none;
}
.field__line {
  position: absolute;
  background: transparent;
  border: 1.5px solid rgba(180,148,40,0.22);
}
.field__border {
  inset: 4%;
  border-radius: 2px;
}
.field__halfway {
  top: 50%; left: 4%; right: 4%; height: 0;
  border-top: 1.5px solid rgba(180,148,40,0.22);
}
.field__circle {
  position: absolute;
  width: 18%; padding-top: 18%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(180,148,40,0.22);
  border-radius: 50%;
}
.field__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(180,148,40,0.35);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.field__box {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 40%; height: 18%;
  border: 1.5px solid rgba(180,148,40,0.2);
}
.field__box--top { top: 4%; }
.field__box--bottom { bottom: 4%; }
.field__goal {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 14%; height: 6%;
  border: 1.5px solid rgba(180,148,40,0.18);
}
.field__goal--top { top: 4%; }
.field__goal--bottom { bottom: 4%; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled { background: rgba(8,8,8,0.95); backdrop-filter: blur(20px); padding: 14px 40px; border-bottom: 1px solid rgba(139,105,20,0.2); }
.nav__inner { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav__logo { justify-self: center; }
.nav__logo img { height: 70px; }
.nav__links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav__links--left { justify-self: start; }
.nav__links--right { justify-self: end; }
.nav__links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s; }
.nav__links a:hover { color: var(--gold-light); }
.nav__cta { background: var(--gold); color: var(--white) !important; padding: 10px 22px; border-radius: 6px; }
.nav__cta:hover { background: var(--gold-light); color: var(--white) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.97); backdrop-filter: blur(20px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 16px 0; }
.mobile-menu a { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); text-decoration: none; transition: opacity 0.2s; }
.mobile-menu a:hover { opacity: 0.7; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 20px 80px;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(139,105,20,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(139,105,20,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content { position: relative; z-index: 3; text-align: center; padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,105,20,0.15); border: 1px solid rgba(139,105,20,0.4);
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 48px; margin-top: -40px;
}
.dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero__title { font-family: 'Bebas Neue', sans-serif; line-height: 0.92; margin-bottom: 56px; }
.hero__title-brand { display: block; font-size: clamp(16px, 2vw, 24px); letter-spacing: 0.35em; color: var(--gold-light); margin-bottom: 12px; }
.hero__title-line { display: block; font-size: clamp(48px, 8vw, 110px); letter-spacing: -0.01em; line-height: 0.95; }
.hero__title-line.gold { color: var(--gold-light); -webkit-text-stroke: 0px; }
.hero__sub { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 44px; }
.hero__sub-gold { color: var(--gold-light); font-weight: 600; }
.hero__sub-dim { color: rgba(255,255,255,0.35); font-size: 0.88em; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s; }
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(139,105,20,0.4); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--large { padding: 18px 36px; font-size: 15px; width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

/* STATS (now in Para Quem section) */
.hero__stats {
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(16px);
  border: 1px solid rgba(139,105,20,0.45); border-radius: 12px;
  padding: 18px 28px; margin-top: 36px;
  width: fit-content;
  box-shadow: 0 12px 40px rgba(139,105,20,0.3), 0 4px 16px rgba(139,105,20,0.15);
}
.stat { text-align: center; }
.stat__num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold-light); line-height: 1; }
.stat__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.stat__divider { width: 1px; height: 50px; background: rgba(255,255,255,0.12); }

.hero__glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 40%; background: radial-gradient(ellipse at 50% 100%, rgba(139,105,20,0.22) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.hero__scroll { position: absolute; right: 40px; bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; pointer-events: none; }
.hero__scroll span { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); writing-mode: vertical-rl; }
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold-light), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* SECTIONS */
.section { padding: 120px 0; }
.container { max-width: 1200px; margin: auto; padding: 0 40px; }
.label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 3.8vw, 56px); font-weight: 800; line-height: 1.05; text-transform: uppercase; }
.section-title em { font-style: normal; color: var(--gold-light); }
.section-sub { color: rgba(255,255,255,0.55); font-size: 17px; margin-top: 16px; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-sub { margin: 16px auto 0; }

/* DATAS */
.datas.section { padding: 60px 0; }
.datas .section-header { margin-bottom: 0; }
.datas .section-title em { color: #fff; }
.datas__grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 16px; margin-top: 36px; align-items: stretch; position: relative; }
.datas__grid::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.12) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.datas__card { z-index: 1; }

.datas__card {
  background: var(--dark3);
  border: 1px solid rgba(139,105,20,0.2);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 18px;
  justify-content: flex-start;
  position: relative; overflow: hidden;
}
.datas__card--active {
  border-color: rgba(201,162,39,0.6);
  box-shadow: 0 0 50px rgba(201,162,39,0.12);
  background: linear-gradient(145deg, rgba(201,162,39,0.06) 0%, var(--dark3) 60%);
}
.datas__card--active:hover { transform: translateY(-3px); transition: transform 0.2s; }
.datas__card--soon, .datas__card--mystery { opacity: 1; }

/* Badge — centrado, mesmo estilo */
.datas__card-badge {
  text-align: center;
  font-size: 14px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 0;
  width: 100%;
}
.datas__card-badge--soon {
  color: rgba(255,255,255,0.35);
  font-size: 12px; letter-spacing: 0.2em;
}

.datas__card-top { display: flex; align-items: center; gap: 16px; }

.datas__date { display: flex; flex-direction: column; align-items: center; line-height: 1; flex-shrink: 0; }
.datas__day { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold); line-height: 1; }
.datas__month { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-light); margin-top: 2px; }
.datas__date--blur .datas__day { color: rgba(255,255,255,0.15); }
.datas__date--blur .datas__month { color: rgba(255,255,255,0.15); }

.datas__divider { width: 1px; height: 50px; background: rgba(139,105,20,0.3); flex-shrink: 0; }

.datas__info { display: flex; flex-direction: column; gap: 5px; }
.datas__city { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1; }
.datas__city--blur { color: rgba(255,255,255,0.12); letter-spacing: 0.1em; }
.datas__venue { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }
.datas__venue--spoiler { font-style: italic; color: rgba(255,255,255,0.3); }

.datas__cta {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,0.4); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.datas__cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* COMING SOON overlay grande */
.datas__coming-soon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .datas__grid { grid-template-columns: 1fr; gap: 14px; }
  .datas__card { order: 0; }
  .datas__card--active { order: -1; }
  .datas__coming-soon { font-size: 36px; }
}

/* SOBRE */
.sobre__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sobre__left .section-title { font-size: clamp(28px, 3vw, 42px); margin-bottom: 24px; }
.sobre__kit { position: relative; border-radius: 16px; overflow: hidden; height: 340px; }
.sobre__kit-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; border-radius: 16px; display: block; border: 1px solid rgba(139,105,20,0.2); }
.sobre__kit-glow { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(139,105,20,0.15), transparent); pointer-events: none; border-radius: 0 0 16px 16px; }
.sobre__text { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.sobre__text strong { color: var(--white); }

.pillars { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.pillar { display: flex; gap: 20px; align-items: flex-start; }
.pillar__icon { width: 44px; height: 44px; background: var(--gold-dim); border: 1px solid rgba(139,105,20,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-light); }
.pillar__icon svg { width: 20px; height: 20px; }
.pillar h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pillar p { font-size: 13px; color: var(--gray); }

/* EVENTO */
.evento { background: var(--dark2); }
.evento__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.evento__card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 40px; position: relative; overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  animation: cardFloat 5s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(139,105,20,0);
}
.evento__card:nth-child(2) { animation-delay: -2.5s; }
.evento__card:hover { transform: translateY(-8px); }
/* brilho deslizante interno */
.evento__card::before {
  content: ''; position: absolute; top: -60%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(201,162,39,0.07) 50%, transparent 60%);
  animation: cardShine 4s ease-in-out infinite;
  pointer-events: none;
}
.evento__card:nth-child(2)::before { animation-delay: -2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes cardShine {
  0% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  60% { left: 120%; opacity: 1; }
  61%, 100% { opacity: 0; left: 120%; }
}
.evento__card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); }
.gold-accent { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.evento__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.evento__time { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.evento__time svg { width: 16px; height: 16px; }
.evento__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 6px 14px; background: rgba(255,255,255,0.06); border-radius: 100px; }
.gold-tag { background: rgba(139,105,20,0.2); color: var(--gold-light); }
.evento__card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.evento__duration { display: flex; gap: 8px; margin-bottom: 28px; justify-content: center; }
.duration-pill { font-size: 12px; font-weight: 600; padding: 5px 14px; border: 1px solid rgba(139,105,20,0.4); border-radius: 100px; color: var(--gold-light); }
.evento__list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.evento__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.evento__list-icon { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

.evento__divider { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.divider__line { width: 1px; height: 80px; background: rgba(255,255,255,0.1); }
.divider__badge { width: 44px; height: 44px; background: var(--gold-dim); border: 1px solid rgba(139,105,20,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--gold-light); }

/* SESSÕES */
.evento__sessions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.evento__session-card { background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 36px; position: relative; overflow: hidden; box-shadow: 0 6px 30px rgba(139,105,20,0.12); animation: cardFloat 5s ease-in-out infinite; text-align: center; }
.evento__session-card--gold { animation-delay: -2.5s; }
.evento__session-card:hover { }
.evento__session-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.1); }
.evento__session-time { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--gold-light); margin-bottom: 12px; font-weight: 600; }
.evento__session-time svg { width: 16px; height: 16px; }
.gold-time { color: var(--gold-light); }
.evento__session-age { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; color: #fff; }

/* BENEFÍCIOS PARTILHADOS */
.evento__shared { padding: 8px 0; }
.evento__shared-card { background: none; border: none; padding: 0; }
.evento__shared-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 32px; text-align: center; }
.evento__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-left: 80px; }
.evento__pillar { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; text-align: left; }
.evento__pillar-icon { width: 44px; height: 44px; background: rgba(139,105,20,0.12); border: 1px solid rgba(139,105,20,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); flex-shrink: 0; }
.evento__pillar-icon svg { width: 20px; height: 20px; }
.evento__pillar h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.evento__pillar p { font-size: 13px; color: var(--gray); line-height: 1.5; }

.evento__note {
  display: flex; align-items: center; gap: 12px; margin-top: 40px;
  background: rgba(139,105,20,0.08); border: 1px solid rgba(139,105,20,0.2);
  border-radius: 10px; padding: 16px 24px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.evento__note svg { width: 18px; height: 18px; color: var(--gold-light); flex-shrink: 0; }

/* PARA QUEM */
.para-quem__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.para-quem__left .section-title { margin-bottom: 24px; }
.para-quem__text { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.para-quem__cta { margin-top: 48px; text-align: center; }
.para-quem__btn--mobile { display: none; }
.quem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quem__item { background: var(--dark3); border: 1px solid rgba(139,105,20,0.35); border-radius: 12px; padding: 28px; box-shadow: 0 4px 20px rgba(139,105,20,0.12); }
.quem__num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: rgba(139,105,20,0.35); line-height: 1; margin-bottom: 10px; }
.quem__item h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.quem__item p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* MANIFESTO */
.manifesto { background: var(--gold); padding: 22px 0; overflow: hidden; box-shadow: 0 0 40px rgba(201,162,39,0.5), 0 4px 60px rgba(139,105,20,0.4); }
.manifesto__track { display: flex; gap: 72px; width: max-content; align-items: center; white-space: nowrap; will-change: transform; }
.manifesto__set { display: flex; gap: 72px; flex-shrink: 0; }
.manifesto__set span { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.1em; color: rgba(0,0,0,0.75); }
.gold-dot { color: rgba(0,0,0,0.4) !important; }

/* INSCRIÇÃO */
.inscricao { position: relative; overflow: hidden; }
.inscricao__deco { position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(139,105,20,0.12), transparent 60%); pointer-events: none; }
.inscricao__inner { max-width: 760px; margin: auto; text-align: center; }
.inscricao__inner .section-title { margin: 16px 0 12px; }
.inscricao__sub { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 48px; }

.inscricao__form-wrap { position: relative; }
.inscricao__form { background: var(--dark3); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { margin-bottom: 28px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input, .form-group select {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 14px 16px; color: var(--white); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold-light); }
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--dark3); }

.form-success { display: none; text-align: center; padding: 60px 40px; }
.form-success.show { display: block; }
.inscricao__form.hide { display: none; }
.success-icon { width: 72px; height: 72px; background: rgba(139,105,20,0.2); border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 32px; height: 32px; color: var(--gold-light); }
.form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; }
.form-success p { color: var(--gray); }

/* FOOTER */
.footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 20px; }
.footer__logo { height: 52px; }
.footer__brand p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 12px; }
.social-link { width: 42px; height: 42px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__tag { color: var(--gold); font-weight: 600; }

/* ANIMATIONS */
.reveal-up, .reveal-fade, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-fade.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { height: 100svh; min-height: unset; padding: 80px 20px; justify-content: center; }
  .hero__badge { font-size: 10px; padding: 7px 14px; white-space: nowrap; margin-bottom: 28px; margin-top: 0; }
  .hero__title { margin-bottom: 40px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__field { display: none; }
  .hero__scroll { display: none; }
}

@media (max-width: 900px) {
  .nav__inner { display: flex; justify-content: space-between; align-items: center; }
  .nav__links { display: none; }
  .nav__burger { display: flex; margin-left: 0; }
  .sobre__inner, .para-quem__inner { grid-template-columns: 1fr; gap: 48px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .sobre__left .section-title, .para-quem__left .section-title { font-size: clamp(24px, 6.5vw, 32px); }
  .evento__cards { grid-template-columns: 1fr; }
  .evento__sessions { grid-template-columns: 1fr 1fr; gap: 10px; }
  .evento__session-card { padding: 18px 14px; }
  .evento__session-age { font-size: 22px; margin-bottom: 12px; }
  .evento__session-time { font-size: 11px; }
  .evento__duration { flex-direction: column; gap: 6px; }
  .duration-pill { font-size: 11px; padding: 4px 10px; white-space: nowrap; width: fit-content; }
  .evento__shared { padding: 0; }
  .evento__shared-label { text-align: center; margin-bottom: 24px; }
  .evento__pillars { grid-template-columns: 1fr 1fr; gap: 20px; padding-left: 0; }
  .evento__pillar { gap: 10px; }
  .evento__pillar-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .evento__pillar h4 { font-size: 12px; }
  .evento__pillar p { font-size: 11px; }
  .evento__divider { flex-direction: row; }
  .divider__line { width: 80px; height: 1px; }
  .hero__stats { gap: 20px; padding: 16px 24px; bottom: 20px; }
  .stat__num { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand { flex-direction: column; align-items: center; text-align: center; order: 2; }
  .footer__social { justify-content: center; order: 1; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; align-items: center; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav__logo img { height: 48px; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 20px 40px; height: 100svh; min-height: unset; }
  .hero__badge { font-size: 10px; padding: 7px 14px; white-space: nowrap; margin-bottom: 24px; margin-top: -10px; }
  .hero__title { margin-bottom: 36px; }
  .hero__title-line { font-size: clamp(36px, 11vw, 48px); }
  .hero__stats { gap: 16px; padding: 14px 20px; }
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 9px; }
  .stat__divider { height: 32px; }
  .hero__scroll { display: none; }
  .quem__grid { grid-template-columns: 1fr 1fr; }
  .para-quem__btn--desktop { display: none; }
  .para-quem__btn--mobile { display: block; }
  .inscricao__form { padding: 24px; }
}
