/* Revisão estrutural pós-consultoria - 28/08/2026 */

html { scroll-padding-top: 88px; }
body { padding-top: 78px; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 7px 24px rgba(16,39,29,.08);
}

.nav nav { gap: 22px; }

/* Hero: foco no encontro e expansão, sem deslocamento lateral. */
.hero h1 { font-size: clamp(58px,7.4vw,116px); }
.hero-copy { z-index: 5; }
.hero-art .orb {
  animation: heroExpansion 5.8s cubic-bezier(.45,0,.25,1) infinite;
  transform-origin: center;
}
.hero-art .rings {
  animation: ringsExpansion 5.8s cubic-bezier(.45,0,.25,1) infinite;
  transform-origin: 55% 40%;
}

@keyframes heroExpansion {
  0%,100% { transform: scale(.88); border-radius: 48% 52% 55% 45%/50% 46% 54% 50%; }
  50% { transform: scale(1.09); border-radius: 50%; }
}
@keyframes ringsExpansion {
  0%,100% { transform: rotate(-13deg) scale(.94); opacity: .75; }
  50% { transform: rotate(-13deg) scale(1.08); opacity: 1; }
}

/* Hierarquia simplificada. */
.section-heading { display: block; margin-bottom: 50px; }
.section-heading > div:empty { display: none; }
.consulting-summary {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.5;
}
.speakers-heading > .kicker,
.speakers-heading > .section-label,
.mentoring-intro > .kicker,
.awards > div:first-child > .kicker { display: none; }
.speakers-heading > p:last-child { display: none; }

/* Palestrantes antecipados e com mais presença. */
.speakers { padding-top: clamp(85px,9vw,125px); padding-bottom: clamp(85px,9vw,125px); }
.speakers .section-heading { margin-bottom: 45px; }
.speaker-grid { gap: 20px; }

/* Mentorias nomeadas por sala. */
.mentor-card > b {
  width: auto;
  height: auto;
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .11em;
}
.mentor-card { padding-right: 115px; }

/* Pilares descem na narrativa e ganham mais separação da mentoria. */
.journey { padding-top: clamp(110px,13vw,185px); }

/* Formatos: imagem à esquerda, conteúdo à direita, sem durações. */
.formats {
  display: grid;
  grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr);
  gap: clamp(35px,6vw,90px);
  align-items: stretch;
}
.formats-photo { margin: 0; min-height: 610px; }
.formats-photo > div {
  height: 100%;
  min-height: 570px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(180deg,transparent 35%,rgba(23,63,43,.72)),
    radial-gradient(circle at 52% 34%,var(--sky) 0 15%,transparent 15.5%),
    radial-gradient(circle at 33% 44%,var(--forest) 0 10%,transparent 10.5%),
    linear-gradient(145deg,#dce6df 0 48%,#b9cbbf 49% 100%);
  color: var(--cream);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease, filter .4s ease;
}
.formats-photo > div::before,
.formats-photo > div::after {
  content: '';
  position: absolute;
  border-radius: 50% 50% 0 0;
  background: var(--forest);
  opacity: .82;
  transition: transform .5s ease;
}
.formats-photo > div::before { width: 35%; height: 42%; left: 13%; bottom: 0; }
.formats-photo > div::after { width: 31%; height: 36%; right: 11%; bottom: 0; background: var(--olive); }
.formats-photo span { position: absolute; top: 22px; left: 22px; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.formats-photo i { position: absolute; inset: 18px; border: 1px solid rgba(247,244,236,.5); }
.formats-photo b { position: relative; z-index: 2; max-width: 280px; font-size: 27px; line-height: 1; }
.formats-photo figcaption { margin-top: 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.formats-photo:hover > div { transform: translate(-7px,-7px) rotate(-.5deg); box-shadow: 16px 18px 0 var(--forest); filter: saturate(1.08); }
.formats-photo:hover > div::before { transform: translateX(12px) scale(1.05); }
.formats-photo:hover > div::after { transform: translateX(-12px) scale(1.08); }
.formats .format-grid { margin: 0; grid-template-columns: 1fr; }
.formats .format-grid article { min-height: 0; display: flex; flex-direction: column; justify-content: center; }
.formats .format-grid h3 { margin: 0 0 12px; }
.formats .challenge-cloud { grid-column: 2; margin-top: -55px; align-self: end; }

/* Prêmio no pré-final. */
.awards { background: var(--cream); padding-top: clamp(100px,12vw,170px); padding-bottom: clamp(100px,12vw,170px); }
.awards .business-button { margin-top: 28px; }
.awards .business-button:hover { background: var(--lime); color: var(--forest); }

/* Parceiros sem título de seção. */
.sponsor-intro { display: flex; justify-content: flex-end; margin-bottom: 30px; }
.sponsor-intro p { max-width: 480px; margin: 0; color: var(--forest); font-size: clamp(22px,3vw,42px); font-weight: 700; letter-spacing: -.04em; }
.sponsor-group-title a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sponsor-group-title a:hover { transform: translateY(-4px); box-shadow: 5px 6px 0 rgba(149,188,204,.42); }

/* Encerramento final, conexões e RSVP integrado. */
.closing { min-height: 720px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.closing h2 span { font-weight: 400; }
.closing-rsvp { margin-top: 34px; }
.closing-rsvp:hover { background: var(--lime); color: var(--forest); transform: translateY(-5px); box-shadow: 8px 9px 0 rgba(23,63,43,.18); }
.closing-rsvp span { padding: 0; background: transparent!important; color: inherit!important; box-shadow: none!important; }

/* A galeria e vencedores vêm antes do prêmio; RSVP antigo não existe mais. */
.rsvp { display: none!important; }

@media (max-width: 900px) {
  body { padding-top: 66px; }
  html { scroll-padding-top: 76px; }
  .formats { grid-template-columns: 1fr; }
  .formats-photo { min-height: 480px; }
  .formats-photo > div { min-height: 440px; }
  .formats .challenge-cloud { grid-column: 1; margin-top: 25px; }
  .nav nav { gap: 14px; }
}

@media (max-width: 620px) {
  .hero h1 { font-size: 55px; }
  .consulting-summary { font-size: 15px; }
  .formats-photo { min-height: 410px; }
  .formats-photo > div { min-height: 370px; }
  .closing { min-height: 650px; align-items: flex-start; text-align: left; }
  .closing div { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art .orb,
  .hero-art .rings { animation: none; }
}
