:root {
  --bg: #0b0b0d;
  --bg-soft: #111116;
  --text: #f5f5f2;
  --text-soft: rgba(245, 245, 242, 0.74);
  --text-faint: rgba(245, 245, 242, 0.48);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c98b2e;
  --accent-strong: #de9f3a;
  --card: rgba(255, 255, 255, 0.04);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.4;
    position: relative;
  z-index: 1;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.consult-page {
  position: relative;
  z-index: 2;
}

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

.consult-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 139, 46, 0.16), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 68% 76%, rgba(201, 139, 46, 0.11), transparent 22%),
    linear-gradient(180deg, #0b0b0d 0%, #101014 45%, #0b0b0d 100%);
}

.shape {
  position: absolute;
  display: block;
  opacity: 0.28;
  will-change: transform;
  --rotate: 0deg;
  --tx: 0px;
  --ty: 0px;
  transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rotate));
}

/* SHAPES */

/* 1 - círculo vazado pequeno */
.shape-1 {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  top: 10%;
  left: 6%;
}

/* 2 - quadrado dourado */
.shape-2 {
  --rotate: 18deg;
  width: 18px;
  height: 18px;
  background: rgba(201, 139, 46, 0.22);
  top: 16%;
  right: 12%;
}

/* 3 - losango vazado */
.shape-3 {
  --rotate: 45deg;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  top: 28%;
  left: 18%;
}

/* 4 - linha */
.shape-4 {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  top: 22%;
  right: 24%;
}

/* 5 - ponto dourado */
.shape-5 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 139, 46, 0.34);
  top: 34%;
  left: 72%;
}

/* 6 - cápsula */
.shape-6 {
  width: 26px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  top: 44%;
  left: 8%;
}

/* 7 - quadrado branco */
.shape-7 {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
  top: 52%;
  right: 10%;
}

/* 8 - círculo maior */
.shape-8 {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 139, 46, 0.24);
  border-radius: 50%;
  top: 60%;
  left: 24%;
}

/* 9 - linha menor */
.shape-9 {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  top: 68%;
  right: 30%;
}

/* 10 - losango dourado */
.shape-10 {
  --rotate: 45deg;
  width: 14px;
  height: 14px;
  background: rgba(201, 139, 46, 0.2);
  top: 74%;
  left: 58%;
}

/* 11 - círculo sólido branco */
.shape-11 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  top: 82%;
  left: 12%;
}

/* 12 - retângulo vazado */
.shape-12 {
  width: 34px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  top: 80%;
  right: 16%;
}

/* 13 - triângulo fake */
.shape-13 {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid rgba(201, 139, 46, 0.22);
  top: 40%;
  right: 42%;
  opacity: 0.22;
}

/* 14 - círculo vazado médio */
.shape-14 {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  top: 88%;
  left: 78%;
}

/* 15 - barra curta dourada */
.shape-15 {
  width: 30px;
  height: 2px;
  background: rgba(201, 139, 46, 0.22);
  top: 12%;
  left: 48%;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 11, 13, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 24px rgba(201, 139, 46, 0.32);
}

.brand-text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.header-cta {
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  padding: 11px 16px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.header-cta:hover {
  border-color: rgba(201, 139, 46, 0.55);
  color: var(--accent-strong);
}

section {
  position: relative;
  padding: 120px 0;
}

.hero-section {
  padding: 90px 0 110px;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--accent-strong);
}

.hero-title,
.section-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-title {
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.02;
  max-width: 11ch;
}

.hero-text,
.section-text,
.info-card p,
.timeline-item p,
.differential-box p,
.partner-note p,
.hero-card-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #121212;
  box-shadow: 0 10px 24px rgba(201, 139, 46, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(201, 139, 46, 0.28);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: rgba(201, 139, 46, 0.55);
  color: var(--accent-strong);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: min(100%, 460px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--text-faint);
}

.hero-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.hero-card-text {
  margin: 24px 0 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.section-head {
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  max-width: 50ch;
}

.section-text {
  margin: 0 0 18px;
  max-width: 780px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.differential-box,
.partner-note {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 24px;
  min-height: 260px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 139, 46, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.card-index,
.timeline-step,
.partner-badge {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--accent-strong);
}

.info-card h3,
.timeline-item h3,
.differential-box h3 {
  margin: 18px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text);
}

.info-card p,
.timeline-item p,
.differential-box p {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.timeline-item h3 {
  font-size: 20px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.differential-box {
  padding: 28px;
}

.partners-grid .section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-note {
  padding: 24px;
}

.partner-note p {
  margin: 14px 0 0;
}

.final-cta-section {
  padding-bottom: 140px;
}

.final-cta-box {
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(201, 139, 46, 0.18);
  background:
    linear-gradient(180deg, rgba(201, 139, 46, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.final-cta-text {
  max-width: 760px;
  margin-top: 20px;
}

.final-actions {
  margin-top: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

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

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

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  section {
    padding: 88px 0;
  }

  .hero-section {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-text,
  .section-text,
  .info-card p,
  .timeline-item p,
  .differential-box p,
  .partner-note p,
  .hero-card-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-card {
    padding: 24px;
  }

  .cards-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .final-cta-box {
    padding: 28px 22px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .brand-text {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-pill {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(26px, 8vw, 40px);
  }

  .info-card h3,
  .timeline-item h3,
  .differential-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .shape-4,
  .shape-8,
  .shape-12,
  .shape-14 {
    display: none;
  }

  .shape {
    opacity: 0.18;
  }
}