:root {
  --deep: #0f4045;
  --deep-2: #122123;
  --teal: #548389;
  --mist: #a8bcc0;
  --gold: #e9af64;
  --gold-2: #d99c4d;
  --white: #fafdfc;
  --panel: rgba(0, 0, 0, 0.12);
  --panel-2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-faint: rgba(255, 255, 255, 0.64);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: #123034;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; }
img { display: block; max-width: 100%; }

.page-bg,
.page-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  background:
    radial-gradient(circle at 15% 18%, rgba(168, 188, 192, 0.30), transparent 20%),
    radial-gradient(circle at 72% 24%, rgba(233, 175, 100, 0.18), transparent 18%),
    radial-gradient(circle at 30% 80%, rgba(168, 188, 192, 0.18), transparent 22%),
    linear-gradient(135deg, #123034 0%, #0f4045 38%, #335f62 66%, #7ba3a7 100%);
  z-index: -2;
}

.page-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.12;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  z-index: -1;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 24px 0;
}

.section-last {
  padding-bottom: 96px;
}

.hero {
  padding-top: 56px;
  padding-bottom: 32px;
}

.hero .container {
  position: relative;
}

.hero-watermark {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1200px);
  text-align: center;
  font-size: clamp(2.8rem, 10vw, 7.8rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.691);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 10px rgba(255, 255, 255, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
  pointer-events: none;
  line-height: 0.88;
  z-index: 0;
}

.hero-title-wrap {
  position: relative;
  z-index: 2;
  padding-top: 132px;
  text-align: center;
}

.hero-title-box {
  display: inline-block;
  max-width: 100%;
  padding: 18px 26px;
  border-radius: 26px;
  background: rgba(8, 65, 73, 0.92);
  box-shadow: var(--shadow);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.25rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-title span,
.theme-title span {
  display: block;
}

.hero-grid,
.grid-two {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  margin-top: 42px;
}

.hero-left {
  display: grid;
  gap: 18px;
}

.stack {
  display: grid;
  gap: 24px;
}

.date-card {
  width: 100%;
  max-width: none;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 0;
}

.date-card-top,
.date-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
}

.date-card-top {
  background: var(--gold);
  color: #0d1717;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.date-card-bottom {
  background: rgba(255, 255, 255, 0.04);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.icon {
  font-size: 1.2em;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.panel h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.panel-bar {
  width: 6px;
  height: 46px;
  border-radius: 999px;
  background: var(--gold);
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.68);
}

.lineup-panel h2 {
  margin-top: 4px;
}

.speaker-list {
  display: grid;
  gap: 14px;
}

.speaker-list-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
}

.speaker-arrow {
  color: var(--gold);
  font-weight: 900;
}

.speaker-list-name {
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.speaker-list-role {
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 0.92rem;
  line-height: 1.45;
}

.theme-box {
  padding: 8px 4px 14px;
}

.theme-title {
  max-width: 600px;
  font-size: clamp(1.9rem, 4.1vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.speaker-stage {
  position: relative;
  overflow: hidden;
}

.speaker-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 38%, rgba(0,0,0,0.08));
  pointer-events: none;
}

.speaker-stage-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  align-items: start;
  gap: 20px 18px;
  padding: 8px 2px 0;
}

.speaker-stage-slot {
  width: 100%;
  display: flex;
  justify-content: center;
}

.speaker-stage-card {
  width: min(100%, 184px);
  display: grid;
  justify-items: center;
  gap: 10px;
}

.speaker-stage-slot:nth-child(7) {
  grid-column: 2;
}

.speaker-circle {
  position: relative;
  width: min(100%, 168px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 18px 34px rgba(0,0,0,0.22);
}

.speaker-circle .photo,
.speaker-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-circle .placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.placeholder-badge {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
  margin-bottom: 6px;
}

.placeholder-initials {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.placeholder-note {
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.35;
}

.speaker-stage-name {
  max-width: 168px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-bottom-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 380px) 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 22px;
}

.bonus-card,
.logo-card {
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.bonus-card {
  background: rgba(255,255,255,0.92);
  color: #111;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.bonus-label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.bonus-name {
  margin-top: 4px;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-2);
  text-transform: uppercase;
}

.logo-card {
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
}

.logo-card-content {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.logo-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.95);
  color: #22705a;
  font-weight: 900;
  font-size: 0.84rem;
  flex: 0 0 auto;
}

.logo-text {
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  font-size: 0.92rem;
}

.rich-text {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.price {
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-subtitle {
  margin-top: 6px;
  color: var(--text-faint);
}

.check-list,
.info-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.check-item,
.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.55;
}

.check-icon,
.info-icon {
  color: var(--gold);
  font-weight: 900;
}

.cta-panel p {
  margin-top: 14px;
  color: var(--text-faint);
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #091314;
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.schedule-day {
  border-radius: 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 20px;
}

.schedule-day-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 14px;
}

.schedule-day-title {
  margin-top: 4px;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.schedule-items {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.schedule-item {
  border-radius: 18px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
}

.schedule-time {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-title {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.schedule-speaker {
  margin-top: 8px;
  color: var(--text-faint);
  font-size: 0.92rem;
  line-height: 1.45;
}

.alt-columns {
  grid-template-columns: 0.95fr 1.05fr;
}

.hotel-box {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--text-soft);
  line-height: 1.7;
}

.info-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.bios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.bio-card {
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 18px;
}

.bio-name {
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.bio-text {
  margin-top: 12px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

.footer-grid {
  grid-template-columns: 1fr 0.8fr;
}

.sponsor-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.03);
}

.sponsor-placeholder {
  color: var(--text-faint);
}

.sponsor-box a {
  display: inline-block;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}

.site-name {
  margin-top: 14px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-copy {
  margin-top: 16px;
  color: var(--text-faint);
  line-height: 1.65;
}

.fade-up,
.fade-left,
.fade-right {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.fade-up { animation-name: fadeUp; }
.fade-left { animation-name: fadeLeft; }
.fade-right { animation-name: fadeRight; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .grid-two,
  .alt-columns,
  .footer-grid,
  .schedule-grid,
  .bios-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-wrap {
    padding-top: 112px;
  }

  .hero-watermark {
    top: -14px;
    font-size: clamp(2.5rem, 11vw, 6.5rem);
  }

  .theme-box {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .speaker-stage-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-bottom-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .theme-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .speaker-stage-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speaker-stage-slot:nth-child(7) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1280px, calc(100% - 20px));
  }

  .hero {
    padding-top: 34px;
  }

  .hero-watermark {
    top: -10px;
    font-size: clamp(1.9rem, 11vw, 3.8rem);
    letter-spacing: -0.04em;
  }

  .hero-title-wrap {
    padding-top: 82px;
  }

  .hero-title-box,
  .panel,
  .schedule-day,
  .bio-card,
  .sponsor-box {
    border-radius: 22px;
  }

  .panel,
  .schedule-day {
    padding: 18px;
  }

  .date-card-top,
  .date-card-bottom {
    padding: 16px 18px;
  }

  .date-card-bottom {
    font-size: 1.45rem;
  }

  .theme-title {
    font-size: clamp(1.55rem, 7.6vw, 2.3rem);
    line-height: 1;
  }

  .speaker-stage-inner {
    gap: 14px;
  }

  .speaker-stage-card {
    width: min(100%, 160px);
    gap: 8px;
  }

  .speaker-circle {
    width: min(100%, 150px);
  }

  .speaker-stage-name {
    max-width: 150px;
    font-size: 0.8rem;
  }

  .hero-bottom-cards {
    grid-template-columns: 1fr;
  }

  .logo-card-content {
    align-items: flex-start;
  }

  .site-name {
    letter-spacing: 0.04em;
    word-break: break-word;
  }
}


#apresentacao,
#inscricao,
#pagamento,
#programacao,
#hotel,
#informacoes,
#palestrantes {
  scroll-margin-top: 120px;
}


.top-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0 0;
}

.top-anchor-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(8, 34, 37, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

.top-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.top-anchor-nav a:hover {
  background: rgba(233, 175, 100, 0.18);
  border-color: rgba(233, 175, 100, 0.36);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .top-anchor-nav {
    padding-top: 8px;
  }

  .top-anchor-nav-inner {
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
  }

  .top-anchor-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
}
