:root {
  --gold: #e5af32;
  --gold-light: #f4c430;
  --gold-dark: #b9861f;
  --black: #06193f;
  --black-soft: #001029;
  --black-deep: #000814;
  --card: #0d1730;
  --card-border: rgba(229, 175, 50, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-30: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 14px 34px rgba(229, 175, 50, 0.16);
  --radius-sm: 0.85rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
.bebas {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.015em;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  margin-bottom: 1.1rem;
}
.btn-gold {
  display: inline-block;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #06193f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  padding: 1.15rem 2.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.btn-gold:hover {
  background: linear-gradient(160deg, #fff2c2, var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(229, 175, 50, 0.28);
}
.btn-gold:active {
  transform: translateY(0);
}
.center {
  text-align: center;
}
section {
  position: relative;
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 12, 33, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-partner {
  min-width: 84px;
}
.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo span {
  color: var(--gold);
}
nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav a.nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}
nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
nav a.nav-link:hover {
  color: var(--gold);
}
nav a.nav-link:hover::after {
  width: 100%;
}
.nav-cta {
  font-size: 0.76rem;
  padding: 0.85rem 1.7rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

p i {
  color: #c9a227;
  width: 22px;
  margin-right: 6px;
}

@media (max-width: 768px) {
  nav .nav-link {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    padding: 0.75rem 1rem;
    font-size: 0.6rem;
  }
  .logo-partner {
    width: 40%;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 8, 20, 0) 55%,
    rgba(0, 8, 20, 0.55) 85%,
    var(--black) 100%
  );
  pointer-events: none;
}
.hero-copy {
  padding: 2rem 1.5rem 3.5rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero-copy .eyebrow {
  letter-spacing: 0.3em;
}
.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
}
.hero-copy h1 .gold {
  color: var(--gold);
}

@media (max-width: 600px) {
  .hero-media {
    max-height: 46vh;
  }
}

/* ---------- SUB CTA (dark strip) ---------- */
.subcta {
  background: var(--black);
  padding: clamp(3rem, 8vw, 4.5rem) 1.5rem clamp(3.5rem, 9vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}
.subcta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.subcta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.subcta p {
  color: var(--white-55);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.2rem;
}

.subcta h1 {
  font-size: clamp(2.1rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  padding: 1.4rem 1rem 2.4rem;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
}
.subcta h1 .gold {
  display: block;
  color: var(--gold);
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  font-family: "Montserrat", sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-top: 0.9rem;
  line-height: 1.4;
}

/* ---------- PARA QUEM É ---------- */
.para-quem {
  background: var(--black-soft);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.para-quem .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.para-quem h2 {
  font-size: clamp(1.9rem, 5.4vw, 3.1rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.08;
}
.para-quem > .inner > p {
  color: var(--white-55);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.7;
  margin-bottom: 2.8rem;
}
.checklist-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  text-align: left;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  box-shadow: var(--shadow-sm);
}
.checklist-card .label {
  color: var(--white-30);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.3rem;
}
.checklist-card ul {
  list-style: none;
}
.checklist-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 600;
  font-size: clamp(0.92rem, 2vw, 1rem);
  line-height: 1.5;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.checklist-card li:last-child {
  border-bottom: none;
}
.checklist-card li::before {
  content: "✓";
  color: var(--black);
  background: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  margin-top: 0.05rem;
}
.quote-block {
  border-left: 3px solid var(--gold);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  padding: 0.2rem 0 0.2rem 1.4rem;
}
.quote-block p:first-child {
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin-bottom: 0.35rem;
}
.quote-block p:last-child {
  color: var(--white-55);
  font-size: 0.95rem;
}

/* ---------- PALESTRANTES ---------- */
.palestrantes {
  background: var(--black);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.6rem, 6vw, 3.8rem);
}
.section-head h2 {
  font-size: clamp(1.9rem, 5.4vw, 3.1rem);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.section-head p {
  color: var(--white-55);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.7;
}
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .speaker-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
.speaker-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.speaker-card:hover {
  border-color: rgba(229, 175, 50, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.speaker-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #16213f, #060d1e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-30);
  font-size: 0.8rem;
  text-align: center;
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.speaker-info {
  padding: 1.5rem 1.4rem 1.6rem;
}
.speaker-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.speaker-role {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.speaker-value {
  color: var(--white-55);
  font-size: 0.87rem;
  line-height: 1.6;
}
.palestrantes-cta {
  text-align: center;
  margin-top: clamp(2.6rem, 6vw, 3.8rem);
}
.palestrantes-cta p {
  color: var(--white-55);
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
}

/* ---------- INGRESSOS ---------- */
.ingressos-bar {
  background: var(--black-soft);
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.ingressos-bar p {
  color: var(--white-55);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.ingressos {
  background: var(--black);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.9rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.price-card.vip {
  background: linear-gradient(
    160deg,
    var(--gold-light),
    var(--gold) 65%,
    var(--gold-dark)
  );
  color: #06193f;
  box-shadow: 0 20px 48px rgba(229, 175, 50, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media (min-width: 761px) {
  .price-card.vip {
    transform: translateY(-0.6rem) scale(1.02);
  }
}
.price-card.vip:hover {
  transform: translateY(-0.85rem) scale(1.02);
  box-shadow: 0 26px 56px rgba(229, 175, 50, 0.36);
}
.price-card.business {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.price-card.business:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.vip .price-badge {
  background: #06193f;
  color: var(--gold-light);
}
.business .price-badge {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--white-55);
}
.price-card h3.bebas {
  font-size: clamp(2rem, 4.6vw, 2.4rem);
  margin-bottom: 1.3rem;
  letter-spacing: 0.03em;
}
.price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.65;
  margin-bottom: 0.35rem;
}
.price-old {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 0.95rem;
}
.price-new {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 3rem);
  line-height: 1;
}
.price-new span {
  font-size: 1.2rem;
  vertical-align: top;
}
.price-install {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 1.8rem;
}
.price-includes-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
  margin-bottom: 1rem;
}
.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.89rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 0.5rem 0;
}
.vip li {
  border-bottom: 1px solid rgba(6, 25, 63, 0.1);
}
.vip li:last-child {
  border-bottom: none;
}
.vip li::before {
  content: "✓";
  font-weight: 800;
}
.business li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.business li:last-child {
  border-bottom: none;
}
.business li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}
.vip li.star::before {
  content: "★";
}
.price-card .btn-gold.full {
  display: block;
  width: 100%;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 1.1rem 1.5rem;
}
.vip .btn-gold.full {
  background: #06193f;
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 25, 63, 0.35);
}
.vip .btn-gold.full:hover {
  background: #0a2258;
  box-shadow: 0 16px 32px rgba(6, 25, 63, 0.45);
}
.business .btn-gold.full {
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  color: #06193f;
}

/* ---------- LOCALIZAÇÃO ---------- */
.local {
  background: var(--black-soft);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.logo-track {
  display: flex;
  width: max-content;
  animation: infiniteScroll 25s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-top: 30px;
  padding-right: 70px;
}

.partner-logo {
  width: 206px;
  height: 103px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
}

.parceiros {
  padding: 100px 0;
  background: #fff;
}

.partner-level {
  margin-top: 60px;
}

.partner-level:first-of-type {
  margin-top: 40px;
}

.level-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
  color: #8c6b2f;
}

.partner-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partner-logo {
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.partner-logo img {
  max-width: 130px;
  max-height: 90px;
  object-fit: contain;
}

/* DIAMANTE */

.diamond .partner-logo {
  padding: 40px;
  border: 2px solid #d9b45b;
  box-shadow: 0 20px 50px rgba(217, 180, 91, 0.2);
}

.diamond .partner-logo img {
  max-width: 280px;
  max-height: 130px;
}

.diamond .level-title {
  color: #c39b3d;
  font-size: 1rem;
}

/* OURO */

.gold .level-title {
  color: #b98b2c;
}

/* PRATA */

.silver .level-title {
  color: #777;
}

@media (max-width: 768px) {
  .partner-grid {
    gap: 20px;
  }

  .partner-logo {
    width: calc(50% - 10px);
  }

  .diamond .partner-logo {
    width: 100%;
  }

  .diamond .partner-logo img {
    max-width: 220px;
  }
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  .local-grid {
    grid-template-columns: 1fr;
  }
}
.local-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}
.local-card .pin {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.pin-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: rgba(229, 175, 50, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.local-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.2rem;
}
.local-card address {
  font-style: normal;
  color: var(--white-55);
  font-size: 0.85rem;
  line-height: 1.55;
}
.map-embed {
  width: 100%;
  height: 230px;
  border: 0;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  filter: grayscale(30%) contrast(1.05);
}
.local-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: linear-gradient(160deg, #16213f, #060d1e);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.local-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-photo-copy {
  position: relative;
  z-index: 2;
  padding: 1.7rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 75%);
  width: 100%;
}
.local-photo-copy .tag {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.local-photo-copy h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  line-height: 1.15;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--black);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.faq-list {
  background: var(--black-soft);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.9rem;
  box-shadow: var(--shadow-sm);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  transition: color 0.2s ease;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .chev {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q {
  color: var(--gold-light);
}
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  color: var(--white-55);
  font-size: 0.89rem;
  line-height: 1.7;
  padding-bottom: 1.4rem;
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--black-soft);
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-final .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--white-30);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.6rem;
}
.cta-final .meta .dot {
  color: var(--gold);
}
.cta-final h2 {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.08;
  max-width: 820px;
  margin: 0 auto 1.6rem;
}
.cta-final h2 .gold {
  color: var(--gold);
}
.cta-final > .container-sm > p {
  color: var(--white-55);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  max-width: 600px;
  margin: 20px auto 1.1rem;
  line-height: 1.7;
}
.cta-final .lead {
  color: var(--white-80);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.cta-final .fine {
  color: var(--white-30);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.3rem;
}

/* ---------- PARCEIROS ---------- */
.parceiros {
  background: var(--black);
  padding: clamp(3.5rem, 7vw, 4.8rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.parceiros .eyebrow {
  text-align: center;
  opacity: 0.7;
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 1rem;
}
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.partner .label {
  font-size: 0.62rem;
  color: var(--white-30);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.partner .logo-box {
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--black-deep);
  border-top: 1px solid var(--line);
  padding: 2.8rem 1.5rem 2.4rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-bottom: 1.7rem;
}
.footer-date {
  text-align: right;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-date .sub {
  color: var(--white-55);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.footer-line {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.footer-line p {
  color: var(--white-30);
  font-size: 0.72rem;
}

/* ---------- ACESSIBILIDADE / TOQUE ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
@media (hover: none) {
  .btn-gold,
  nav a.nav-cta,
  .faq-q {
    -webkit-tap-highlight-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
