/* =========================================================
   O ROSTO DA NEGOCIAÇÃO, design tokens
   Mesma identidade visual do ConnexUP Corporate.
   Troque as cores aqui para ajustar toda a página.
   ========================================================= */
:root {
  --black: #080808;
  --near-black: #121212;
  --white: #f3f0ea;
  --off-white: #f3efe7;
  --gray-900: #1c1c1c;
  --gray-700: #4a4a48;
  --gray-500: #7d7b76;
  --gray-300: #d8d5cf;
  --gray-100: #f1efea;
  --gold: #c28b3c;
  --gold-light: #d5a85a;
  --gold-dark: #8f642d;
  --champagne: #e9decb;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-w: 1140px;
  --section-pad: 128px;
  --section-pad-mobile: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--gray-900);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: inherit;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  max-width: 20ch;
}

p { margin: 0 0 16px; }

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

svg { display: block; width: 20px; height: 20px; flex-shrink: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(1.25rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 58ch;
  font-weight: 400;
}

.quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 26ch;
  margin: 40px 0;
  color: inherit;
}
.quote-gold { color: var(--gold); }
.quote-sans-gold {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

.closing {
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 56ch;
  margin-top: 32px;
}
.depoimentos-impact {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold);
  max-width: 42ch;
  margin: 48px auto 0;
  text-align: center;
}

.note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 60ch;
  border-top: 1px solid var(--gray-300);
  padding-top: 24px;
  margin-top: 40px;
}

.text-block p {
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 52ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border-color: var(--gray-300);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 1.05rem;
  padding: 18px 44px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 100%;
}
.btn-gold:hover { filter: brightness(1.08); }
.btn-small {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  color: var(--gray-700);
  margin-bottom: 28px;
  text-align: center;
  line-height: 1.6;
}
.badge-gold { border-color: var(--gold); color: var(--gold); }
.badge-on-dark { border-color: rgba(255,255,255,0.2); color: var(--gray-300); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 16px 0;
  min-height: 76px;
}
.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-desktop a:not(.btn) {
  color: var(--gray-300);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-desktop a:not(.btn):hover { color: var(--gold); }
.nav-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.site-header.is-scrolled .nav-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--near-black);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:not(.btn) {
  padding: 18px 24px;
  color: var(--gray-300);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.nav-mobile .btn {
  width: calc(100% - 48px);
  margin: 20px 24px;
  justify-content: center;
}
.nav-mobile.open { display: flex; }

/* =========================================================
   FAIXA EM MOVIMENTO
   ========================================================= */
.marquee-band {
  background: var(--off-white);
  border-top: 1px solid rgba(194, 139, 60, 0.35);
  border-bottom: 1px solid rgba(194, 139, 60, 0.35);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-dot { color: var(--gold-dark); font-size: 0.9rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--black) url("../assets/connections-bg.svg") center center / cover no-repeat;
  color: var(--white);
  padding: 128px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 30rem;
}
.hero-inner-nophoto { grid-template-columns: 1fr; }
.hero-inner-nophoto .hero-text {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.hero-inner-nophoto .hero-kicker { justify-content: center; }
.hero-inner-nophoto .hero-benefits { justify-content: center; }
.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  border: 1px solid rgba(194, 139, 60, 0.35);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { max-width: 340px; margin: 0 auto; }
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}
.hero-kicker-logo { height: 44px; width: auto; flex-shrink: 0; }
.hero-kicker span {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 600;
}
.hero-kicker span.hero-kicker-name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}
.hero-product-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.hero-product-name-lead {
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
  margin-top: 0;
}
.hero-mark {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 0 14px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 20ch;
}
.hero-title-accent { color: var(--gold); }
.hero-based {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-300);
  margin: -16px 0 14px;
}
.hero-application {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  line-height: 1.45;
  max-width: 46ch;
  margin-bottom: 18px;
}
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.hero-benefits {
  display: flex;
  gap: 24px;
  margin: 8px 0 32px;
}
.hero-benefit {
  max-width: 160px;
  padding-left: 24px;
  border-left: 1px solid rgba(185,148,92,0.35);
  text-align: center;
}
.hero-benefit:first-child { padding-left: 0; border-left: none; }
.hero-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
}
.hero-benefit-icon svg { width: 44px; height: 44px; color: var(--gold); }
.hero-benefit p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--gray-300);
  margin: 0;
}
.hero-application { color: var(--white); }
.hero-application strong { color: var(--gold); font-weight: 700; }
.hero-cta {
  padding: 18px 42px;
  font-size: 1.02rem;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--gray-300);
}
.hero-info-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  color: var(--gray-900);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark-mesh {
  background: var(--black) url("../assets/connections-bg.svg") center center / cover no-repeat;
}
.gold-dark { color: var(--gold-dark); }
.section-dark .lead { color: var(--gray-300); }
.section-dark .closing { color: var(--gray-300); }
.section-dark .quote { color: var(--white); }
.section-dark .quote-gold { color: var(--gold); }
.section-dark .quote-sans-gold { color: var(--gold); }
.section-dark .text-block p { color: var(--gray-300); }

.tensao-section { position: relative; overflow: hidden; }
.tensao-inner { position: relative; display: grid; grid-template-columns: 0.85fr 1.3fr; gap: 40px; align-items: center; }
.tensao-text { position: relative; z-index: 2; }
.tensao-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 18px 0 22px;
}
.tensao-title .gold { color: var(--gold); }
.tensao-text .lead { max-width: 42ch; margin-bottom: 20px; }
.tensao-text .lead strong { color: var(--gold); font-weight: 700; }
.tensao-custo { margin: 0 0 32px; max-width: 46ch; font-size: 1rem; line-height: 1.55; color: var(--gray-300); }
.tensao-points { display: flex; flex-direction: column; gap: 22px; }
.tensao-point { display: flex; gap: 16px; align-items: flex-start; padding-top: 18px; border-top: 1px solid rgba(185,148,92,0.25); }
.tensao-point-icon { width: 26px; height: 26px; flex-shrink: 0; margin-top: 2px; }
.tensao-point-icon svg { width: 26px; height: 26px; color: var(--gold); }
.tensao-point p { margin: 0; font-size: 1.02rem; line-height: 1.5; color: var(--gray-300); }
.tensao-point p strong { color: var(--gold); font-weight: 700; }
.tensao-final {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(185,148,92,0.25);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--gray-300);
}
.tensao-final strong { color: var(--white); font-weight: 700; }

/* ---------- Desejo ---------- */
.desejo-list {
  max-width: 640px;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.desejo-list p {
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--gray-700);
}
.desejo-list p strong { color: var(--gray-900); font-weight: 700; }
.desejo-closing {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--gold-dark);
  margin: 40px 0 0;
  max-width: 44ch;
}
.desejo-closing strong { color: var(--gold-dark); }
.tensao-photo { position: relative; z-index: 1; border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; }
.tensao-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .tensao-inner { grid-template-columns: 1fr; }
  .tensao-photo { order: -1; }
}
.section-dark .note { color: var(--gray-500); border-color: rgba(255,255,255,0.12); }

/* ---------- Tensão, comparação sem cartões ---------- */
.tension-rows {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tension-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tension-rows .tension-row:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.tension-side {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
}
.tension-side.tension-a { color: var(--gray-300); text-align: right; }
.tension-side.tension-b { color: var(--gold); text-align: left; }
.tension-mid {
  width: 1px;
  height: 36px;
  background: var(--gold);
  opacity: 0.5;
  justify-self: center;
}

/* ---------- Lista editorial (condução automática / experiência) ---------- */
.para-quem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 44px 0 0;
}
.para-quem-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(194,139,60,0.28);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}
.para-quem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}
.para-quem-icon svg { width: 30px; height: 30px; color: var(--gold); }
.para-quem-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 10px;
}
.para-quem-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gray-300);
  margin: 0;
}
.para-quem-closing {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--gold);
  max-width: 30ch;
  margin: 48px 0 0;
}
@media (max-width: 768px) {
  .para-quem-cards { grid-template-columns: 1fr; }
}

/* ---------- Sequência fato / interpretação / resposta automática ---------- */
.auto-sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 40px 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-500);
}
.section-dark .auto-sequence { color: var(--gray-300); }
.auto-sequence-arrow { color: var(--gold); }

/* ---------- Timeline (experiência) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.timeline-step p { margin: 10px 0 0; font-size: 1.05rem; color: var(--gray-300); }
.timeline-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

/* ---------- Comparação antes e depois ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.compare-card {
  padding: 36px 32px;
  border-radius: 4px;
}
.compare-off {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
}
.compare-on {
  background: rgba(185, 148, 92, 0.08);
  border: 1px solid var(--gold);
}
.compare-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-card li:last-child { border-bottom: none; }
.compare-off li svg { width: 15px; height: 15px; color: var(--gray-500); flex-shrink: 0; margin-top: 4px; }
.compare-on li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.compare-on .compare-title { color: var(--gold); }

/* ---------- O que você recebe ---------- */
.recebe-list { max-width: 640px; margin: 48px auto 0; }
.recebe-item { display: flex; gap: 20px; align-items: flex-start; text-align: left; padding-bottom: 32px; }
.recebe-item:last-child { padding-bottom: 0; }
.recebe-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.recebe-icon svg { width: 20px; height: 20px; color: var(--gold); }
.recebe-item-title { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; color: var(--gray-900); margin-bottom: 6px; }
.recebe-item p { color: var(--gray-700); font-size: 0.95rem; line-height: 1.5; }

/* ---------- O que você vai dominar ---------- */
.gold { color: var(--gold); }
.dominar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dominar-card { text-align: center; }
.dominar-photo {
  border: 1px solid rgba(194, 139, 60, 0.35);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: -26px;
}
.dominar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dominar-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
}
.dominar-icon svg { width: 24px; height: 24px; color: var(--gold); }
.dominar-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.dominar-card p { color: var(--gray-300); font-size: 0.94rem; line-height: 1.5; }
.ferramentas-vantagens {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 720px;
}
.ferramentas-vantagens-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--white);
  margin: 0 0 20px;
}
.ferramentas-vantagens-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ferramentas-vantagens-list li { position: relative; padding-left: 22px; color: var(--gray-300); font-size: 0.96rem; line-height: 1.55; }
.ferramentas-vantagens-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
  padding: 26px 30px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--gray-100);
}
.disclaimer-box svg { width: 20px; height: 20px; color: var(--gray-500); flex-shrink: 0; margin-top: 2px; }
.disclaimer-box p { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--gray-700); max-width: 56ch; }
.section-dark .disclaimer-box { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.14); }
.section-dark .disclaimer-box p { color: var(--gray-300); }

/* ---------- Depoimentos ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px auto 0;
  max-width: 620px;
}
.testimonial-card { min-width: 0; }
.testimonial-name, .testimonial-role { overflow-wrap: break-word; }
.testimonial-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--black);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--gray-300);
  margin: 14px 0 0;
}
.testimonial-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin: 10px 0 2px;
}
.testimonial-role { font-size: 0.92rem; color: var(--gray-500); margin: 0; }

/* ---------- Antes de sair ---------- */
.exit-reassurance {
  border-top: 1px solid rgba(194, 139, 60, 0.25);
}
.exit-reassurance-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.exit-reassurance-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.25;
  color: var(--white);
  max-width: 26ch;
  margin: 0 auto 32px;
}
.exit-reassurance-punch {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  max-width: 68ch;
  margin: 0 auto 36px;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; max-width: 68ch; }
.faq-item {
  border-bottom: 1px solid var(--gray-300);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gray-900);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-size: 1.4rem;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 16px 0 0; color: var(--gray-700); font-size: 1.05rem; line-height: 1.6; max-width: 60ch; }

/* ---------- Quem conduz ---------- */
#quem-conduz { position: relative; padding-top: 60px; padding-bottom: 40px; }
.section-dark + .section-dark { padding-top: 56px; }
.quem-conduz-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 16px;
}
.quem-photo { width: 100%; }
.quem-photo img { width: 100%; height: auto; display: block; }
.quem-text {
  max-width: 520px;
  text-align: left;
}
.quem-text p { font-size: 1.1rem; line-height: 1.6; color: var(--gray-300); max-width: 58ch; }
@media (max-width: 900px) {
  .quem-conduz-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .quem-photo { max-width: 78%; margin: 0 auto; }
  .quem-text { max-width: 100%; text-align: center; margin: 0 auto; }
  .quem-text p { margin-left: auto; margin-right: auto; }
}
.quem-text .quem-name {
  font-family: var(--font-serif);
  font-style: normal;
}
.quem-text .quem-specialty-inline {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}
.quem-text .quem-stat {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}
.quem-text .quem-principle {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  color: var(--champagne);
  margin-top: 4px;
}
.quem-text .quem-note {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-300);
  margin-top: 14px;
}
.quem-conduz-light .quem-text p { color: var(--gray-700); }
.quem-conduz-light .quem-text .quem-specialty-inline { color: var(--gold-dark); }
.quem-conduz-light .quem-text .quem-principle { color: var(--gold-dark); }
.quem-conduz-light .quem-text .quem-note { color: var(--gray-700); }

/* =========================================================
   INSCRIÇÃO
   ========================================================= */
.enrollment-light .container { text-align: center; }

.checkout-bridge-band {
  background: var(--black);
  border-top: 1px solid rgba(194, 139, 60, 0.25);
  padding: 76px 0;
  text-align: center;
}
.checkout-bridge {
  max-width: 620px;
  margin: 0 auto;
  padding-left: 0;
  border-left: none;
}
.checkout-bridge-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 14px;
}
.checkout-bridge-line {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.checkout-bridge-line-gold { color: var(--gold); }
.checkout-bridge-note {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 400;
  margin: 24px 0 0;
}

.offer-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 44px 36px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: var(--black);
  text-align: center;
}
.offer-card-logo {
  display: block;
  height: 34px;
  width: auto;
  margin: 0 auto 14px;
}
.offer-card-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 0 18px;
}
.offer-card-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.offer-card-anchor {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--gray-500);
  margin: 0 0 4px;
}
.offer-card-installment {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--gray-300);
  margin: 0;
}
.offer-card-price {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--gold);
  font-weight: 700;
}
.offer-card-condition {
  font-size: 1rem;
  color: var(--gray-300);
  margin: 2px 0 24px;
}
.offer-card-bonus {
  padding: 16px 18px;
  border: 1px dashed var(--gold);
  border-radius: 4px;
  background: rgba(194,139,60,0.06);
  font-size: 0.9rem;
  color: var(--gray-300);
  text-align: left;
  margin: 0 0 24px;
}
.offer-card-bonus strong { color: var(--white); }
.offer-card-impact {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin: 0 0 24px;
}
.offer-card-cta { width: 100%; justify-content: center; }
.offer-card-secure {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 14px 0 0;
}
.enrollment-terms {
  list-style: none;
  padding: 0;
  margin: 0;
}
.enrollment-terms li {
  font-size: 1rem;
  color: var(--gray-500);
  padding: 5px 0;
}

/* =========================================================
   FECHAMENTO
   ========================================================= */
.closing-section {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad) 0 60px;
  text-align: center;
}
.closing-section h2 { max-width: 22ch; margin: 0 auto 24px; }
.closing-section .lead { max-width: 60ch; margin: 0 auto 40px; color: var(--gray-300); }
.final-lines {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   RODAPÉ
   ========================================================= */
.site-footer {
  background: var(--black);
  color: var(--gray-500);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  font-family: var(--font-serif);
  color: var(--gray-300);
  font-size: 0.95rem;
}
.footer-brand span { color: var(--gold); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.85rem;
  color: var(--gray-500);
  width: 100%;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================================================
   REVEAL ANIMATION (discreta)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 992px) {
  .dominar-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header.header-hidden { transform: translateY(-100%); }
  :root { --section-pad: var(--section-pad-mobile); }
  .hero { padding: 150px 0 64px; }
  .hero-kicker-logo { height: 44px; }
  .hero-kicker span { font-size: 1.1rem; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { max-width: 100%; }
  .hero-application { max-width: 100%; }
  .hero-benefits { flex-wrap: nowrap; gap: 10px; }
  .hero-benefit { max-width: 33%; padding-left: 10px; }
  .hero-benefit-icon { width: 32px; height: 32px; margin: 0 auto 8px; }
  .hero-benefit-icon svg { width: 32px; height: 32px; }
  .hero-benefit p { font-size: 0.78rem; }
  .tension-row { grid-template-columns: 1fr; gap: 10px; text-align: left; padding: 22px 0; }
  .tension-side.tension-a, .tension-side.tension-b { text-align: left; }
  .tension-mid { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .dominar-grid { grid-template-columns: 1fr; gap: 24px; max-width: 100%; margin-top: 32px; }
  .dominar-card { position: relative; text-align: left; min-height: 64px; padding-left: 80px; }
  .dominar-photo { position: absolute; top: 0; left: 0; width: 64px; height: 64px; aspect-ratio: 1 / 1; border-radius: 50%; margin: 0; }
  .dominar-icon { display: none; }
  .dominar-card-title { margin-bottom: 4px; font-size: 0.98rem; }
  .dominar-card p { font-size: 0.88rem; }
  .offer-card { padding: 36px 22px; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 320px; margin-left: auto; margin-right: auto; }
  .auto-sequence { font-size: 0.75rem; }
  h2 { max-width: 100%; }
  .quote { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero-info-item { font-size: 0.8rem; padding: 9px 14px; }
}
