/* ============================================================
   DOMÍNIO DE NEGÓCIOS — 2ª Edição · O Ciclo
   ============================================================ */
:root {
  --preto: #0d0d10;
  --preto-2: #16161b;
  --branco: #ffffff;
  --off-white: #f6f5f3;
  --cinza-texto: #3a3a40;
  --cinza-claro: #b9b9c2;
  --laranja: #ff7a1a;
  --rosa: #ff2d78;
  --magenta: #c724b1;
  --grad: linear-gradient(90deg, var(--laranja), var(--rosa) 55%, var(--magenta));
  --fonte-titulo: 'Poppins', sans-serif;
  --fonte-texto: 'Inter', sans-serif;
  --sombra: 0 20px 60px rgba(0, 0, 0, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--fonte-texto);
  color: var(--cinza-texto);
  background: var(--preto);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--fonte-titulo); line-height: 1.15; }

.container { width: min(1140px, 92%); margin: 0 auto; }
.center { text-align: center; }

/* Texto com gradiente */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 45, 120, .35);
}
.btn-lg { font-size: 1.15rem; padding: 1.05rem 2.4rem; }
.btn-outline {
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
}
.btn-outline:hover { border-color: var(--rosa); }
.btn-whats {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}

/* ============ Header ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .9rem 0;
  padding-top: calc(.9rem + env(safe-area-inset-top));
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(13, 13, 16, .92);
  backdrop-filter: blur(12px);
  padding: .55rem 0;
  padding-top: calc(.55rem + env(safe-area-inset-top));
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; }
.header-logo img { height: 40px; width: auto; }
.header-nav { display: flex; gap: 1.3rem; margin-left: auto; }
.header-nav a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.header-nav a:hover, .header-nav a.ativo { color: var(--laranja); }

/* Acessibilidade */
.pular-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--grad);
  color: #fff;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  padding: .8rem 1.4rem;
  border-radius: 0 0 12px 0;
  text-decoration: none;
}
.pular-link:focus { left: 0; top: 0; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--rosa);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-header { font-size: .9rem; padding: .65rem 1.4rem; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }

/* Ken Burns: só quando o vídeo não é carregado (economia de dados) e fica o poster */
.hero-video.sem-video { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

/* Indicador de rolagem */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  animation: flutuar 2.2s ease-in-out infinite;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll svg { width: 30px; height: 30px; }
@keyframes flutuar {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-scroll { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,16,.72) 0%, rgba(13,13,16,.55) 45%, rgba(13,13,16,.92) 100%);
}
.hero-simbolo {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: .14;
  pointer-events: none;
  animation: girar 60s linear infinite;
}
@keyframes girar { to { transform: translateY(-50%) rotate(360deg); } }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.selo {
  display: inline-block;
  font-family: var(--fonte-titulo);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .4rem 1.1rem;
  margin-bottom: 1.4rem;
  background: rgba(255,255,255,.06);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin-bottom: 1.6rem;
}
.hero-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.1rem;
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--fonte-titulo);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
}
.info-item svg {
  width: 19px;
  height: 19px;
  color: var(--laranja);
  flex-shrink: 0;
}
.info-item + .info-sep + .info-item svg { color: var(--rosa); }
.info-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.28);
}
.hero-prova { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 1.3rem; }
.hero-prova strong { color: #fff; }

/* Contagem regressiva */
.countdown { display: flex; gap: 1.2rem; margin-bottom: 1.9rem; }
.countdown-ingressos { justify-content: center; margin: 0 0 3.2rem; }

/* Faixa de contagem entre o hero e o Sobre */
.faixa-cd {
  background:
    radial-gradient(ellipse 60% 90% at 50% 120%, rgba(255,45,120,.14), transparent),
    var(--preto-2);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 2.6rem 0 3rem;
  text-align: center;
}
.faixa-cd-titulo {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
}
.countdown-faixa { justify-content: center; margin-bottom: 0; }
.cd-item {
  min-width: 128px;
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 1.3rem 1rem 1.05rem;
  backdrop-filter: blur(6px);
}
.cd-item strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cd-item span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ============ Seções ============ */
.section { padding: 5.5rem 0; position: relative; overflow: hidden; }
.section-light { background: var(--off-white); }
.section-dark {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(199,36,177,.12), transparent),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255,255,255,.035) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.035) 79px 80px),
    var(--preto);
  color: var(--cinza-claro);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--preto);
}
.section-sub { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 640px; }

/* ============ Sobre ============ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.sobre-texto p { margin-bottom: 1rem; font-size: 1.02rem; }
.sobre-lead {
  font-family: var(--fonte-titulo);
  font-size: 1.18rem !important;
  font-weight: 600;
  color: var(--preto);
  border-left: 4px solid;
  border-image: var(--grad) 1;
  padding-left: 1rem;
}
.sobre-texto h3 { margin: 1.6rem 0 .9rem; font-size: 1.2rem; color: var(--preto); }
.lista-check { list-style: none; }
.lista-check li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: .8rem;
}
.lista-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sobre-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.sobre-fotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--sombra);
}
.foto-a { grid-column: 1 / -1; aspect-ratio: 16/9; }
.foto-b, .foto-c { aspect-ratio: 4/3; }

.numeros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.numero {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.numero strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .35rem;
}
.numero span { font-size: .9rem; }

.lyri-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--preto);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--cinza-claro);
}
.lyri-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.lyri-card p { margin-bottom: .9rem; }
.lyri-card strong { color: #fff; }
.lyri-foto img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
}

/* ============ Tema — O Ciclo ============ */
.tema-simbolo {
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 480px;
  opacity: .07;
  pointer-events: none;
}
/* Roda do Ciclo */
.ciclo-roda {
  position: relative;
  width: min(720px, 94vw);
  aspect-ratio: 1;
  margin: 1rem auto 2.5rem;
  --raio: min(265px, 34vw);
}
.ciclo-orbita {
  position: absolute;
  inset: 12%;
  width: 76%;
  opacity: .16;
  animation: orbitar 90s linear infinite;
  pointer-events: none;
}
@keyframes orbitar { to { transform: rotate(360deg); } }
.ciclo-centro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--fonte-titulo);
  line-height: 1;
}
.ciclo-centro span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .3rem;
}
.ciclo-centro strong {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fase {
  background: rgba(22,22,27,.92);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  text-align: center;
  transform: translate(-50%, -50%)
    rotate(calc(var(--i) * 72deg))
    translateY(calc(var(--raio) * -1))
    rotate(calc(var(--i) * -72deg));
}
.fase.ativa {
  border-color: transparent;
  background:
    linear-gradient(rgba(22,22,27,.96), rgba(22,22,27,.96)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 12px 44px rgba(255,45,120,.28);
  transform: translate(-50%, -50%)
    rotate(calc(var(--i) * 72deg))
    translateY(calc(var(--raio) * -1))
    rotate(calc(var(--i) * -72deg))
    scale(1.08);
}
.fase-num {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: .95rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fase h3 { font-size: 1.15rem; margin: .5rem 0 .4rem; }
.fase p { font-size: .88rem; }
.tema-fechamento {
  max-width: 720px;
  font-size: 1.08rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}
.tema-fechamento strong { color: #fff; }

/* ============ Palestrantes ============ */
.palestrantes-destaques {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 3rem;
}
.palestrante-destaque {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: var(--preto);
  border-radius: 24px;
  padding: 2rem 2.2rem;
  color: var(--cinza-claro);
}
.p-foto {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
  background: var(--grad);
}
.p-foto img, .p-foto-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}
.p-foto-destaque { width: 170px; height: 170px; padding: 5px; }
.p-destaque-info h3 { color: #fff; font-size: 1.7rem; margin: .5rem 0 .3rem; }
.p-destaque-info p { font-size: .95rem; }
.tag-nacional {
  display: inline-block;
  font-family: var(--fonte-titulo);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: .35rem 1rem;
}
.palestrantes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 1.4rem;
}
.palestrante { text-align: center; }
.palestrante .p-foto { margin: 0 auto .9rem; }
.palestrante h4 { font-size: 1.08rem; color: var(--preto); margin-bottom: .25rem; }
.palestrante p { font-size: .85rem; line-height: 1.45; }
.p-foto-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--preto-2);
  color: rgba(255,255,255,.55);
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 2rem;
}
.palestrante-embreve { opacity: .65; }

/* ============ Local ============ */
.local-info h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.local-info p { margin-bottom: 2rem; max-width: 640px; }
.local-info strong { color: #fff; }
.local-midia {
  display: grid;
  grid-template-columns: 1.15fr .75fr 1.15fr;
  gap: 1.2rem;
  align-items: stretch;
}
.local-midia > * {
  height: 360px;
  border-radius: 18px;
  box-shadow: var(--sombra);
}
.local-mapa { overflow: hidden; }
.local-mapa iframe { width: 100%; height: 100%; display: block; }
.local-midia img {
  width: 100%;
  object-fit: cover;
}
.hotel-a { object-position: center 72%; }

/* ============ Depoimentos ============ */
.depoimentos-slot { max-width: 860px; margin: 0 auto 3rem; }
.video-player {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  background: var(--preto);
  box-shadow: var(--sombra);
  display: block;
  object-fit: cover;
}
.depoimentos-placeholder {
  aspect-ratio: 16/9;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,45,120,.15), transparent),
    var(--preto);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.7);
}
.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 1.6rem;
  padding-left: 6px;
}
.numeros-1ed { display: block; margin-bottom: 0; }
.numeros-titulo {
  text-align: center;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-bottom: 1.4rem;
}
.numeros-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 760px; margin: 0 auto; }

/* Esteira de fotos */
.marquee {
  margin-top: 3.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: deslizar 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 190px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
}
@keyframes deslizar { to { transform: translateX(calc(-50% - .5rem)); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .ciclo-orbita, .hero-simbolo { animation: none; }
}

/* ============ FAQ ============ */
.section-white { background: #fff; }
.faq-lista { max-width: 780px; }
.faq-lista details {
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.faq-lista summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--preto);
  padding: 1.2rem 2.4rem 1.2rem 0;
  position: relative;
  transition: color .2s;
}
.faq-lista summary::-webkit-details-marker { display: none; }
.faq-lista summary::after {
  content: "+";
  position: absolute;
  right: .3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .25s;
}
.faq-lista details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-lista details[open] summary { color: var(--rosa); }
.faq-lista details p { padding: 0 0 1.3rem; max-width: 680px; }
.faq-lista a { color: var(--rosa); }

/* ============ O que você vai viver ============ */
.viver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.viver-card {
  background: var(--preto);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  color: var(--cinza-claro);
  transition: transform .25s ease, box-shadow .25s ease;
}
.viver-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(255,45,120,.18);
}
.viver-card h3 { color: #fff; font-size: 1.12rem; margin-bottom: .5rem; }
.viver-card p { font-size: .92rem; line-height: 1.55; }
.viver-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.1rem;
}
.viver-icone svg { width: 24px; height: 24px; color: var(--laranja); }
.viver-card:nth-child(even) .viver-icone svg { color: var(--rosa); }

/* ============ Micro-animações ============ */
.hero h1 .grad {
  background-size: 200% auto;
  animation: brilho-grad 5s ease-in-out infinite;
}
@keyframes brilho-grad {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.p-foto img { transition: transform .35s ease; }
.p-foto:hover img { transform: scale(1.08); }
.hero .btn-lg { animation: pulso 2.8s ease-in-out infinite; }
@keyframes pulso {
  0%, 100% { box-shadow: 0 8px 28px rgba(255,45,120,.35); }
  50% { box-shadow: 0 8px 40px rgba(255,45,120,.62); }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .grad, .hero .btn-lg { animation: none; }
  .p-foto img { transition: none; }
}

/* ============ Voltar ao topo ============ */
.topo-btn {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.topo-btn.visivel { opacity: 1; transform: none; pointer-events: auto; }
.topo-btn svg { width: 22px; height: 22px; }
.topo-btn:hover { filter: brightness(1.1); }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visivel { opacity: 1; transform: none; }
.fase.reveal { transform: translate(-50%, -50%)
    rotate(calc(var(--i) * 72deg))
    translateY(calc(var(--raio) * -1))
    rotate(calc(var(--i) * -72deg))
    translateY(26px); }
.fase.reveal.visivel, .fase.reveal.visivel.ativa { opacity: 1; }
.fase.reveal.visivel { transform: translate(-50%, -50%)
    rotate(calc(var(--i) * 72deg))
    translateY(calc(var(--raio) * -1))
    rotate(calc(var(--i) * -72deg)); }
.fase.reveal.visivel.ativa { transform: translate(-50%, -50%)
    rotate(calc(var(--i) * 72deg))
    translateY(calc(var(--raio) * -1))
    rotate(calc(var(--i) * -72deg))
    scale(1.08); }

/* ============ Ingressos ============ */
.ingressos-simbolo {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 440px;
  opacity: .07;
  pointer-events: none;
}
.planos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 1.8rem;
  justify-content: center;
}
.plano {
  border-radius: 24px;
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
}
.plano-gold {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
}
.plano-black {
  position: relative;
  background: var(--preto-2);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--preto-2), var(--preto-2)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 24px 70px rgba(255,45,120,.16);
}
.plano-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--fonte-titulo);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plano h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .3rem;
}
.preco {
  font-family: var(--fonte-titulo);
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.preco small { font-size: 1.2rem; font-weight: 600; }
.plano ul { list-style: none; margin-bottom: 2rem; flex: 1; }
.plano li {
  padding: .5rem 0 .5rem 1.9rem;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.plano li::before { position: absolute; left: 0; font-weight: 800; }
.plano li.sim::before { content: "✓"; color: var(--laranja); }
.plano li.nao { opacity: .38; }
.plano li.nao::before { content: "—"; }
.plano li strong { color: #fff; }

/* ============ Patrocinadores ============ */
.patrocinadores-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  margin: 2.5rem 0 2rem;
}
.patro-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.patro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.1);
}
.patro-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.patrocinio-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 100% at 50% 130%, rgba(255,45,120,.22), transparent),
    var(--preto);
  border-radius: 24px;
  padding: 3rem 2rem;
  color: var(--cinza-claro);
}
.patrocinio-cta h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: .7rem;
}
.patrocinio-cta p { font-size: 1.05rem; max-width: 540px; margin: 0 auto 1.8rem; }
.patrocinio-cta strong { color: #fff; }
.patrocinio-simbolo {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  opacity: .1;
  pointer-events: none;
}

/* ============ CTA final / Footer ============ */
.cta-final h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  max-width: 780px;
  margin: 0 auto 2rem;
}
.cta-logo { height: 64px; width: auto; margin: 0 auto 2rem; }
.footer {
  background: #08080a;
  padding: 3rem 0 6rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: .9rem;
}
.footer-logo { height: 42px; width: auto; margin: 0 auto 1.2rem; }
.footer-inner p { margin-bottom: .8rem; }
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-family: var(--fonte-titulo);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1rem;
  transition: color .2s;
}
.footer-insta:hover { color: var(--rosa); }
.footer-copy { font-size: .8rem; opacity: .7; }

/* CTA fixo mobile */
/* Botão flutuante compacto no canto inferior esquerdo */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 90;
  transform: translateY(140%);
  transition: transform .35s ease;
}
.mobile-cta.mostrar { transform: none; }
.mobile-cta .btn {
  font-size: .88rem;
  padding: .7rem 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 6px 20px rgba(255,45,120,.3);
}

/* ============ Responsivo ============ */
@media (max-width: 960px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(13,13,16,.97);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    margin-left: 0;
  }
  .header-nav.open { transform: translateX(0); }
  .header-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 110; margin-left: auto; }
  .btn-header { display: none; }

  .sobre-grid { grid-template-columns: 1fr; }
  /* Empilhado: cada mídia com proporção própria (a fachada é vertical) */
  .local-midia { grid-template-columns: 1fr; }
  .local-midia > * { height: auto; }
  .local-mapa { height: 300px; }
  .hotel-a { aspect-ratio: 4/5; object-position: center 65%; }
  .hotel-b { aspect-ratio: 16/10; }
  .numeros { grid-template-columns: repeat(2, 1fr); }
  .lyri-card { grid-template-columns: 1fr; padding: 1.8rem; }
  .lyri-foto { max-width: 280px; }
  /* Roda do Ciclo vira lista empilhada */
  .ciclo-roda {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .ciclo-orbita, .ciclo-centro { display: none; }
  .fase, .fase.ativa, .fase.reveal, .fase.reveal.visivel, .fase.reveal.visivel.ativa {
    position: static;
    width: auto;
    transform: none;
    text-align: left;
  }
  .fase.reveal { opacity: 0; transform: translateY(26px); }
  .fase.reveal.visivel { opacity: 1; transform: none; }
  .fase:last-child { grid-column: 1 / -1; }
  .palestrantes-grid { grid-template-columns: repeat(2, 1fr); }
  .palestrantes-destaques { grid-template-columns: 1fr; gap: 1.2rem; }
  .palestrante-destaque { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .planos { grid-template-columns: 1fr; }
  .viver-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta { display: block; }
  .topo-btn { bottom: calc(1.1rem + env(safe-area-inset-bottom)); right: 1rem; }
}

/* Versões curta/longa de textos do hero */
.so-mobile { display: none; }
@media (max-width: 640px) {
  .so-desktop { display: none; }
  .so-mobile { display: inline; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); margin-bottom: .9rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.3rem; }
  .selo { font-size: .72rem; padding: .35rem .9rem; margin-bottom: 1.1rem; }
  .hero-info { margin-bottom: 1.7rem; }
  /* Botão do hero centralizado */
  .hero .btn-lg { display: flex; width: max-content; margin: 0 auto; }
}

@media (max-width: 520px) {
  .section { padding: 3.8rem 0; }
  .viver-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .hero-info { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .info-sep { display: none; }
  .countdown { gap: .6rem; }
  .cd-item { min-width: 0; flex: 1; padding: .9rem .3rem .7rem; }
  .cd-item strong { font-size: 2.1rem; }
  .cd-item span { font-size: .68rem; }
  .marquee-track img { height: 130px; }
  .header-logo img { height: 32px; }
  .numeros-row { grid-template-columns: 1fr; }
  .p-foto { width: 120px; height: 120px; }
  .p-foto-destaque { width: 170px; height: 170px; }
  .patrocinadores-logos { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .patro-card { height: 104px; padding: 1rem; }
  .patrocinio-cta { padding: 2rem 1.2rem; }
  .btn-whats {
    width: 100%;
    white-space: normal;
    line-height: 1.3;
    font-size: .95rem;
    padding: .85rem 1.2rem;
  }
  .btn-whats svg { flex-shrink: 0; }
}
