:root {
  --navy: #071a33;
  --navy-2: #0d2b52;
  --royal: #13569c;
  --gold: #f2b632;
  --gold-2: #d9911f;
  --ink: #101827;
  --muted: #586273;
  --paper: #f7f4ee;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 80px rgba(4, 14, 29, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  align-items: center;
  background: rgba(7, 26, 51, 0.88);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: auto;
}

.brand-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand strong,
h1,
h2,
h3,
.event-panel strong,
.timeline-item strong {
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 11px;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 92vh;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 76px;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 16, 32, 0.96) 0%, rgba(5, 16, 32, 0.78) 42%, rgba(5, 16, 32, 0.28) 100%),
    url("./assets/hero-bg-novo.jpg"),
    linear-gradient(135deg, #061527 0%, #0e2b50 50%, #241609 100%);
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  animation: hero-motion 30s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes hero-motion {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 26, 51, 0.55) 72%, var(--navy) 100%),
    radial-gradient(circle at 68% 42%, rgba(242, 182, 50, 0.22), transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.92;
  margin: 0;
  max-width: 820px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: #1d1608;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--white);
}

.event-panel {
  background: rgba(7, 26, 51, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 64px;
  max-width: 290px;
  padding: 22px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  z-index: 3;
  backdrop-filter: blur(14px);
}

.event-panel span {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.event-panel strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin: 10px 0;
}

.event-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.intro-section,
.audience-section,
.registration {
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section-heading h2,
.audience-section h2,
.registration h2 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin: 0;
}

.section-heading.compact {
  max-width: 720px;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.pillars {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillars article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.pillars span {
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.pillars h3 {
  font-size: 30px;
  line-height: 1;
  margin: 18px 0 12px;
}

.pillars p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.journey-section {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 44px;
}

.timeline-item {
  border-top: 1px solid #d9d5cc;
  display: grid;
  gap: 24px;
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 24px 0;
}

.timeline-item:last-child {
  border-bottom: 1px solid #d9d5cc;
}

.timeline-item strong {
  color: var(--navy);
  font-size: 28px;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

.audience-section {
  background: #f0ece3;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(7, 26, 51, 0.08);
  color: var(--navy);
  font-weight: 700;
  padding: 18px 20px;
}

.quote-band {
  background: var(--navy-2);
  color: var(--white);
  padding-bottom: 72px;
  padding-top: 72px;
}

.quote-band p {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.08;
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
  text-transform: uppercase;
}

.registration {
  background: var(--navy);
  color: var(--white);
}

.registration h2 {
  color: var(--white);
}

.registration p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  max-width: 620px;
}

.lead-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.payment-badge {
  align-items: center;
  background: #eef4fb;
  border: 1px solid #d2deeb;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.payment-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-badge strong {
  color: var(--navy);
  font-size: 13px;
}

.lead-form label {
  color: var(--navy);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  text-transform: uppercase;
}

.lead-form input {
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  font: inherit;
  min-height: 48px;
  padding: 0 14px;
}

.lead-form .button {
  margin-top: 4px;
  width: 100%;
}

.form-status {
  border-radius: 6px;
  display: none;
  font-size: 13px !important;
  font-weight: 700;
  margin: 0;
  padding: 12px 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-info {
  background: #eef4fb;
  color: var(--navy);
}

.form-status.is-error {
  background: #fff1ef;
  color: #8a1f12;
}

.form-status.is-success {
  background: #edf8f1;
  color: #176034;
}

.form-note {
  color: var(--muted) !important;
  font-size: 12px !important;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: #041122;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .event-panel {
    margin-top: 42px;
    max-width: none;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .intro-section,
  .audience-section,
  .registration,
  .pillars {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  section {
    padding-bottom: 62px;
    padding-top: 62px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-media {
    background-position: right center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
