/* ═══════════════════════════════════════════════════════════
   AMPLIA CAPITAL · Landing Page
   Sistema visual herdado do Brand Manual v1.0
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #0E0E0F;
  --grafite: #1A1A1B;
  --grafite-2: #333333;
  --steel: #4A4A4A;
  --silver: #ffffff;
  --pearl: #C9C9C9;
  --pearl-2: #E8E5E0;
  --bone: #FAFAF7;
  --bone-2: #F0EDE7;
  --white: #FFFFFF;
  --floresta: #0F3D2E;
  --sage: #2E5C4A;
  --mint: #3EE89A;
  --display: 'Oswald', 'Bebas Neue', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--floresta);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--floresta);
}

section.dark .eyebrow {
  color: var(--mint);
}

section.dark .eyebrow::before {
  background: var(--mint);
}

h2.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  padding-top: 0.04em;
  text-wrap: balance;
}

h2.section-title em {
  font-style: normal;
  color: var(--floresta);
}

section.dark h2.section-title em {
  color: var(--mint);
}

p.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

section.dark p.section-lede {
  color: var(--pearl);
}

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

section.dark {
  background: var(--ink);
  color: var(--bone);
}

section.pearl {
  background: var(--bone-2);
}

/* ╔══════════════════════════════════════════════╗
   ║  NAV                                         ║
   ╚══════════════════════════════════════════════╝ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 14, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--bone);
}

.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--pearl);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--mint);
  color: var(--ink);
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #2dd687;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  HERO                                        ║
   ╚══════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/banner-skyline.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.55);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 14, 15, 0.6) 0%, rgba(14, 14, 15, 0.85) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(46, 92, 74, 0.25), transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -120px;
  top: 20%;
  width: 720px;
  opacity: 0.05;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 120px;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.008em;
  margin: 0;
  padding-top: 0.04em;
  color: var(--bone);
}

.hero-headline em {
  font-style: normal;
  color: var(--mint);
}

.hero-tag {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-tag::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--mint);
}

.hero-sub {
  margin-top: 36px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pearl);
  max-width: 52ch;
}

.hero-cta-row {
  margin-top: 56px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 28px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
}

.btn--primary {
  background: var(--mint);
  color: var(--ink);
}

.btn--primary:hover {
  background: #2dd687;
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.btn--dark {
  background: var(--ink);
  color: var(--bone);
}

.btn--dark:hover {
  background: var(--floresta);
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat .v {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--mint);
  font-weight: 500;
}

.hero-stats .stat .v small {
  font-size: 0.42em;
  color: var(--pearl);
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.hero-stats .stat .l {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: scrollFade 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: currentColor;
}

@keyframes scrollFade {

  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-bottom: 80px;
  }

  .hero-stats {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  SOBRE                                       ║
   ╚══════════════════════════════════════════════╝ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background-image: url('/assets/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.06) brightness(0.85);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 14, 15, 0.2) 0%, rgba(46, 92, 74, 0.15) 100%);
}

.about-photo .corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-photo .corners::before,
.about-photo .corners::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid var(--mint);
}

.about-photo .corners::before {
  top: 20px;
  left: 20px;
  border-right: 0;
  border-bottom: 0;
}

.about-photo .corners::after {
  bottom: 20px;
  right: 20px;
  border-left: 0;
  border-top: 0;
}

.about-content .section-title {
  margin-bottom: 32px;
}

.about-pillars {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--pearl);
}

.about-pillar {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--pearl);
  align-items: start;
}

.about-pillar:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--pearl);
  padding-left: 0;
}

.about-pillar:nth-child(even) {
  padding-left: 32px;
}

.about-pillar .n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--floresta);
  padding-top: 4px;
  white-space: nowrap;
}

.about-pillar h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-top: 0.05em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-pillar:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .about-pillar:nth-child(even) {
    padding-left: 0;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  SOLUÇÕES                                    ║
   ╚══════════════════════════════════════════════╝ */
.solutions-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--grafite);
  color: var(--bone);
  padding: 0;
  overflow: hidden;
  min-height: 560px;
  transition: transform 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
}

.solution-photo {
  height: 280px;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.7) saturate(0.4);
  position: relative;
}

.solution-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 15, 0.2) 0%, rgba(14, 14, 15, 0.85) 100%);
}

.solution-num {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
}

.solution-body {
  padding: 40px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-name {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 14px;
  color: var(--bone);
  padding-top: 0.04em;
}

.solution-name em {
  font-style: normal;
  color: var(--mint);
}

.solution-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--pearl);
  margin: 0 0 28px;
}

.solution-items {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.solution-items li {
  font-size: 14px;
  color: var(--pearl);
  padding: 12px 0 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.solution-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--mint);
}

.solution-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-link::after {
  content: "→";
  transition: transform 0.2s;
}

.solution-card:hover .solution-link::after {
  transform: translateX(6px);
}

@media (max-width: 900px) {

  .solutions-head,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solutions-head {
    margin-bottom: 56px;
    gap: 32px;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  METODOLOGIA                                 ║
   ╚══════════════════════════════════════════════╝ */
.method-head {
  margin-bottom: 80px;
  max-width: 800px;
}

.method-vetores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vetor {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.vetor:last-child {
  border-right: 0;
  padding-right: 0;
}

.vetor:not(:first-child) {
  padding-left: 32px;
}

.vetor .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vetor h4 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--bone);
  padding-top: 0.05em;
}

.vetor p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pearl);
}

.vetor .stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vetor .stat .v {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  color: var(--mint);
  font-weight: 500;
}

.vetor .stat .u {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

.method-process {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 48px;
}

.method-process-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: -0.005em;
  padding-top: 0.04em;
}

.method-process-head h3 em {
  font-style: normal;
  color: var(--mint);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.process-rail::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 8px;
  width: 25%;
  height: 3px;
  background: var(--mint);
}

.process-step {
  position: relative;
  padding-top: 80px;
  padding-right: 32px;
}

.process-step .dot {
  position: absolute;
  top: 20px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--mint);
}

.process-step:first-child .dot {
  background: var(--mint);
}

.process-step .n {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--silver);
  text-transform: uppercase;
}

.process-step h5 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  padding-top: 0.05em;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pearl);
}

@media (max-width: 900px) {
  .method-vetores {
    grid-template-columns: 1fr 1fr;
  }

  .vetor:nth-child(2) {
    border-right: 0;
  }

  .process-rail {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-rail::before,
  .process-rail::after {
    display: none;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  POR QUE AMPLIA                              ║
   ╚══════════════════════════════════════════════╝ */
.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: end;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--pearl);
}

.why-item {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--pearl);
  align-items: start;
}

.why-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--pearl);
}

.why-item:nth-child(even) {
  padding-left: 48px;
}

.why-item .num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--floresta);
  font-weight: 500;
}

.why-item h4 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  padding-top: 0.04em;
}

.why-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
}

@media (max-width: 900px) {

  .why-head,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-head {
    margin-bottom: 56px;
    gap: 32px;
  }

  .why-item:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .why-item:nth-child(even) {
    padding-left: 0;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  SIMULADOR                                   ║
   ╚══════════════════════════════════════════════╝ */
.sim-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}

.sim-form {
  background: var(--grafite);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-form-head {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.sim-row {
  margin-bottom: 24px;
}

.sim-row label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}

.sim-row input,
.sim-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  transition: border-color 0.2s;
}

.sim-row input:focus,
.sim-row select:focus {
  outline: none;
  border-color: var(--mint);
}

.sim-row input::placeholder {
  color: var(--steel);
}

.sim-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sim-btn {
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  background: var(--mint);
  color: var(--ink);
  border: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.sim-btn:hover {
  background: #2dd687;
}

.sim-info {
  padding-top: 32px;
}

.sim-info .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sim-info h3 {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bone);
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  padding-top: 0.04em;
}

.sim-info h3 em {
  font-style: normal;
  color: var(--mint);
}

.sim-info p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pearl);
  margin: 0 0 32px;
  max-width: 44ch;
}

.sim-perks {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sim-perk {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
}

.sim-perk .check {
  width: 32px;
  height: 32px;
  border: 1px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 16px;
}

.sim-perk .t {
  font-family: var(--body);
  font-size: 16px;
  color: var(--bone);
  font-weight: 500;
}

@media (max-width: 900px) {
  .sim-stage {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sim-form {
    padding: 32px;
  }

  .sim-cols {
    grid-template-columns: 1fr;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  NÚMEROS                                     ║
   ╚══════════════════════════════════════════════╝ */
.numbers-stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: end;
}

.numbers-head .big-stat {
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 144px);
  line-height: 0.98;
  color: var(--mint);
  font-weight: 500;
  margin: 32px 0 16px;
  letter-spacing: -0.02em;
  padding-top: 0.04em;
}

.numbers-head .big-stat small {
  font-size: 0.22em;
  color: var(--bone);
  font-family: var(--mono);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.numbers-head .big-cap {
  font-family: var(--body);
  font-size: 20px;
  color: var(--pearl);
  max-width: 40ch;
  line-height: 1.5;
}

.numbers-side {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.num-row {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.num-row .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pearl);
}

.num-row .v {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--mint);
  font-weight: 500;
}

.num-row .v small {
  font-size: 0.4em;
  color: var(--bone);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .numbers-stage {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  PARCEIROS                                   ║
   ╚══════════════════════════════════════════════╝ */
.partner-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.partner-photo {
  aspect-ratio: 5/4;
  background-image: url('/assets/partner.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  position: sticky;
  top: 104px;
  align-self: start;
}

.partner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 92, 74, 0.15) 0%, rgba(14, 14, 15, 0.2) 100%);
}

.partner-steps {
  margin-top: 56px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pearl);
}

.partner-step {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--pearl);
}

.partner-step .n {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--floresta);
  padding-top: 4px;
  white-space: nowrap;
}

.partner-step h5 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding-top: 0.05em;
  color: var(--ink);
}

.partner-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
}

@media (max-width: 900px) {
  .partner-stage {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partner-photo {
    position: static;
    top: auto;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  CTA FINAL                                   ║
   ╚══════════════════════════════════════════════╝ */
.cta-final {
  background: var(--ink);
  color: var(--bone);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.cta-photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/banner-skyline.jpg');
  background-size: cover;
  background-position: center 70%;
  filter: grayscale(1) contrast(1.05) brightness(0.4);
  opacity: 0.45;
}

.cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.5) 0%, rgba(14, 14, 15, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1100px;
}

.cta-final h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 84px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  padding-top: 0.04em;
  font-weight: 500;
}

.cta-final h2 em {
  font-style: normal;
  color: var(--mint);
}

.cta-final p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--pearl);
  max-width: 60ch;
  margin: 0 0 40px;
}

/* ╔══════════════════════════════════════════════╗
   ║  FOOTER                                      ║
   ╚══════════════════════════════════════════════╝ */
footer.footer {
  background: var(--ink);
  color: var(--silver);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-brand img {
  height: 56px;
  margin-bottom: 28px;
}

.foot-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--pearl);
  max-width: 36ch;
  margin: 0;
}

.foot-col h6 {
  margin: 0 0 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col li {
  font-size: 14px;
  color: var(--pearl);
  line-height: 1.4;
}

.foot-col a:hover {
  color: var(--mint);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver);
  text-transform: uppercase;
}

.foot-bottom b {
  color: var(--bone);
  font-weight: 500;
}

.foot-social {
  display: flex;
  gap: 16px;
}

.foot-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
}

.foot-social a:hover {
  border-color: var(--mint);
  color: var(--mint);
}

@media (max-width: 900px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}

/* ╔══════════════════════════════════════════════╗
   ║  PLAYBOOK ADDITIONS                         ║
   ╚══════════════════════════════════════════════╝ */

/* Nav chapter numbers */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a .ch {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--silver);
  letter-spacing: 0.18em;
}

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

.nav-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

@media (max-width: 900px) {
  .nav-meta {
    display: none;
  }
}

/* Hero meta row (read time, chapters, etc) */
.hero-meta-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.hero-meta .v {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .hero-meta-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Hero TOC sidebar */
.hero-toc {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.hero-toc .toc-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  padding-bottom: 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.toc-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--pearl);
  transition: padding-left 0.2s, color 0.2s;
}

.toc-row:last-child {
  border-bottom: 0;
}

.toc-row:hover {
  color: var(--bone);
  padding-left: 8px;
}

.toc-row .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver);
  white-space: nowrap;
}

.toc-row:hover .n {
  color: var(--mint);
}

.toc-row .t {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Quando usar — matrix */
.quando-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}

@media (max-width: 900px) {
  .quando-head {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }
}

.matrix {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 0.7fr;
  border-top: 1px solid var(--ink);
}

.matrix-head,
.matrix-row {
  display: contents;
}

.matrix-head .mc {
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--floresta);
  background: var(--bone-2);
}

.matrix-row .mc {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--pearl);
  display: flex;
  align-items: center;
  font-size: 14px;
}

.matrix-row .mc--scenario {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding-right: 32px;
}

.matrix-row .mc--scenario .sn {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--floresta);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.matrix-row .mc--scenario h5 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.18;
  padding-top: 0.05em;
  color: var(--ink);
}

.matrix-row .mc--scenario p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--steel);
}

.matrix-row .mc--rec {
  padding-right: 16px;
}

.matrix-row .mc--rec .tag {
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding-top: 0.05em;
  color: var(--ink);
}

.matrix-row .mc--time,
.matrix-row .mc--ticket {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.matrix-row:hover .mc {
  background: var(--bone-2);
}

.matrix-row:hover .mc--rec .tag {
  color: var(--floresta);
}

.matrix-note {
  margin: 40px 0 0;
  padding: 24px;
  background: var(--bone-2);
  border-left: 2px solid var(--floresta);
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 64ch;
}

.matrix-note b {
  color: var(--ink);
  font-weight: 600;
}

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

  .matrix-head {
    display: none;
  }

  .matrix-row {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--pearl);
  }

  .matrix-row .mc {
    padding: 8px 0;
    border: 0;
  }

  .matrix-row .mc--rec,
  .matrix-row .mc--time,
  .matrix-row .mc--ticket {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }

  .matrix-row .mc--rec::before {
    content: "Solução";
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--silver);
    text-transform: uppercase;
  }

  .matrix-row .mc--time::before {
    content: "Prazo";
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--silver);
    text-transform: uppercase;
  }

  .matrix-row .mc--ticket::before {
    content: "Ticket";
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--silver);
    text-transform: uppercase;
  }
}

/* Close meta (fechamento) */
.close-meta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.close-meta-item .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}

.close-meta-item .v {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

@media (max-width: 700px) {
  .close-meta {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Partner note (instead of CTA button) */
.partner-note {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: var(--bone);
  border-left: 2px solid var(--floresta);
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  max-width: 56ch;
}

.partner-note b {
  color: var(--ink);
  font-weight: 600;
}


/* ╔══════════════════════════════════════════════╗
   ║  HOME-SPECIFIC SECTIONS                      ║
   ╚══════════════════════════════════════════════╝ */

/* MVV — Missão / Visão / Valores */
.mvv-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mvv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--pearl);
}

.mvv-item {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--pearl);
  align-items: start;
}

.mvv-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--floresta);
  padding-top: 4px;
  white-space: nowrap;
}

.mvv-item h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.18;
  padding-top: 0.04em;
  font-weight: 500;
  color: var(--ink);
}

.mvv-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
}

@media (max-width: 900px) {
  .mvv-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Simulador — Form real */
.sim-section {
  background: var(--ink);
  color: var(--bone);
  padding: 100px 0;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.sim-side .eyebrow {
  color: var(--mint);
}

.sim-side .eyebrow::before {
  background: var(--mint);
}

.sim-side h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  padding-top: 0.04em;
  color: var(--bone);
}

.sim-side h2 em {
  font-style: normal;
  color: var(--mint);
}

.sim-side p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--pearl);
  max-width: 44ch;
  margin: 0 0 32px;
}

.sim-form-card {
  background: var(--grafite);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-form-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
}

.sim-field {
  margin-bottom: 20px;
}

.sim-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.sim-field input,
.sim-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.2s;
}

.sim-field input:focus,
.sim-field select:focus {
  outline: none;
  border-color: var(--mint);
}

.sim-field input::placeholder {
  color: var(--steel);
}

.sim-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sim-submit {
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  background: var(--mint);
  color: var(--ink);
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.sim-submit:hover {
  background: #2dd687;
}

@media (max-width: 900px) {
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sim-form-card {
    padding: 28px;
  }

  .sim-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* SEO content blocks */
.seo-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--pearl);
}

.seo-block:first-child {
  border-top: 0;
}

.seo-block h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  padding-top: 0.04em;
  font-weight: 500;
  color: var(--ink);
}

.seo-block h3 em {
  font-style: normal;
  color: var(--floresta);
}

.seo-block p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
}

.seo-block p:last-child {
  margin-bottom: 0;
}

.seo-block p b {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .seo-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bone);
  border: 1px solid var(--pearl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card .quote-mark {
  font-family: var(--display);
  font-size: 64px;
  color: var(--floresta);
  line-height: 0.8;
}

.testimonial-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
  flex: 1;
}

.testimonial-author {
  padding-top: 20px;
  border-top: 1px solid var(--pearl);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.testimonial-author small {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 10px;
}

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

/* Articles / LinkedIn block */
.articles-stage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.articles-cta {
  background: var(--ink);
  color: var(--bone);
  padding: 56px 48px;
  position: relative;
}

.articles-cta .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.articles-cta h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  padding-top: 0.04em;
  font-weight: 500;
}

.articles-cta h3 em {
  font-style: normal;
  color: var(--mint);
}

.articles-cta p {
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--pearl);
  max-width: 40ch;
}

@media (max-width: 900px) {
  .articles-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .articles-cta {
    padding: 40px 28px;
  }
}

/* Mini service cards (PJ + Garantia Imóvel) */
.mini-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.mini-card {
  background: var(--bone-2);
  border: 1px solid var(--pearl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  transition: background 0.2s;
}

.mini-card:hover {
  background: var(--bone);
}

.mini-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  padding-top: 0.04em;
  line-height: 1.1;
  font-weight: 500;
  color: var(--ink);
}

.mini-card h4 em {
  font-style: normal;
  color: var(--floresta);
}

.mini-card p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--steel);
  line-height: 1.5;
}

.mini-card .arrow {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--floresta);
}

@media (max-width: 900px) {
  .mini-services {
    grid-template-columns: 1fr;
  }
}


/* ╔══════════════════════════════════════════════╗
   ║  PHOTO ENRICHMENT                            ║
   ╚══════════════════════════════════════════════╝ */

/* Banner photo (SEO content section opener) */
.banner-photo {
  position: relative;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.78) saturate(0.4);
  margin-bottom: 64px;
  border: 1px solid var(--pearl);
}

.banner-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.15) 0%, rgba(14, 14, 15, 0.35) 100%);
}

.banner-photo .banner-overlay {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 2;
  filter: invert(0);
}

.banner-photo .b-loc {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  padding: 10px 14px;
  background: rgba(14, 14, 15, 0.7);
  backdrop-filter: blur(8px);
}

.banner-photo .b-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
}

/* Section with full-bleed bg photo (numbers) */
.section--bgphoto {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.section--bgphoto .bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.35);
  z-index: 0;
}

.section--bgphoto .bg-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.4) 0%, rgba(14, 14, 15, 0.85) 50%, rgba(14, 14, 15, 0.92) 100%);
}

.section--bgphoto .container {
  position: relative;
  z-index: 2;
}

/* Testimonials with backdrop */
.testimonials-stage {
  position: relative;
  padding: 80px 56px;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  border: 1px solid var(--pearl);
}

.testimonials-stage .ts-photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.35) saturate(0.4);
  opacity: 0.7;
}

.testimonials-stage .ts-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 15, 0.4) 0%, rgba(14, 14, 15, 0.85) 100%);
}

.testimonials-stage>.container {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 0;
}

.testimonials-stage .testimonial-card {
  background: rgba(14, 14, 15, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--bone);
}

.testimonials-stage .testimonial-card p {
  color: var(--pearl);
}

.testimonials-stage .testimonial-card .quote-mark {
  color: var(--mint);
}

.testimonials-stage .testimonial-author {
  color: var(--bone);
  border-top-color: rgba(255, 255, 255, 0.15);
}

.testimonials-stage .testimonial-author small {
  color: var(--silver);
}

/* Sim section with side photo */
.sim-side-photo {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 4 / 3;
  background-image: url('/assets/partner.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.06) brightness(0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-side-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.2) 0%, rgba(14, 14, 15, 0.4) 100%);
}

.sim-side-photo .corners-mint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sim-side-photo .corners-mint::before,
.sim-side-photo .corners-mint::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--mint);
}

.sim-side-photo .corners-mint::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.sim-side-photo .corners-mint::after {
  bottom: 16px;
  right: 16px;
  border-left: 0;
  border-top: 0;
}

/* ── Badge de assinatura Cloud (rodapé) ── */
.dev-badge {
  background: #F5C400;
  color: #0E0E0F;
  padding: 4px 10px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.2s;
}

.dev-badge:hover {
  background: #FFD633;
}

/* ── Dropdown do botão "Simular crédito" (nav) ── */
.nav-cta-wrap {
  position: relative;
}

.nav-cta {
  border: none;
  cursor: pointer;
}

.nav-cta-plus {
  display: inline-block;
  margin-left: 4px;
  font-weight: 700;
  transition: transform 0.25s;
}

.nav-cta-wrap:hover .nav-cta-plus,
.nav-cta-wrap:focus-within .nav-cta-plus {
  transform: rotate(135deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  background: rgba(14, 14, 15, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--mint);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-cta-wrap:hover .nav-dropdown,
.nav-cta-wrap:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 15px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pearl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: rgba(62, 232, 154, 0.12);
  color: var(--mint);
}

/* ── Modal "Seja nosso parceiro" ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 14, 15, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--grafite);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--mint);
  padding: 44px 40px 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--pearl);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.modal-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 12px;
}

.modal-title em {
  font-style: normal;
  color: var(--mint);
}

.modal-lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--pearl);
  margin: 0 0 28px;
}

.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-btn {
  flex: 1;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--pearl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.toggle-btn:hover {
  border-color: var(--mint);
}

.toggle-btn.active {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
  font-weight: 600;
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .modal-card {
    padding: 40px 24px 28px;
  }

  .modal-title {
    font-size: 28px;
  }
}

/* ═══ PÁGINAS INTERNAS ═══ */
/* Hero de página interna */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: 180px 0 96px;
  overflow: hidden;
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.42);
}

.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 14, 15, 0.65) 0%, rgba(14, 14, 15, 0.9) 100%);
}

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

.page-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  padding-top: 0.04em;
  color: var(--bone);
}

.page-hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.page-hero-sub {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--pearl);
  max-width: 62ch;
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pearl);
  margin-bottom: 26px;
}

.breadcrumb a {
  color: var(--silver);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--mint);
}

/* Grid de modalidades / linhas de crédito */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.line-card {
  border: 1px solid var(--pearl);
  background: var(--white);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.line-card:hover {
  border-color: var(--floresta);
  transform: translateY(-3px);
}

.line-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--floresta);
  margin-bottom: 18px;
}

.line-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}

.line-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  color: var(--steel);
}

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

/* CTA centralizada de página */
.cta-center {
  text-align: center;
}

.cta-center .eyebrow {
  justify-content: center;
}

.cta-center .section-lede {
  margin: 0 auto 32px;
}

.cta-center .hero-cta-row {
  justify-content: center;
  margin-top: 0;
}

/* ── Slider de valor (modal de crédito) ── */
.range-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  color: var(--mint);
  margin: 6px 0 2px;
}

.range-value small {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--pearl);
  letter-spacing: 0.1em;
}

.range-credito {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin: 16px 0 8px;
  background: linear-gradient(to right, var(--mint) 0%, var(--mint) 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
  outline: none;
  cursor: pointer;
}

.range-credito::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--ink);
  cursor: pointer;
}

.range-credito::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--ink);
  cursor: pointer;
}

.range-ends {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--silver);
  text-transform: uppercase;
}

/* ── Dropdown "Soluções" na nav ── */
.nav-item-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--pearl);
  cursor: pointer;
  transition: color 0.2s;
}

.nav-drop-trigger:hover {
  color: var(--mint);
}

.nav-drop-caret {
  font-weight: 700;
  transition: transform 0.2s;
}

.nav-item-drop:hover .nav-drop-caret,
.nav-item-drop:focus-within .nav-drop-caret {
  transform: rotate(135deg);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(14, 14, 15, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--mint);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}

.nav-item-drop:hover .nav-submenu,
.nav-item-drop:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  padding: 13px 18px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pearl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, color 0.2s;
}

.nav-submenu a:last-child {
  border-bottom: none;
}

.nav-submenu a:hover {
  background: rgba(62, 232, 154, 0.12);
  color: var(--mint);
}

/* Variante do grid de modalidades com 3 colunas */
.lines-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
  .lines-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

/* ── Faixa de condições (números) — páginas de solução ── */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fact {
  border-top: 2px solid var(--mint);
  padding-top: 18px;
}

.fact .fv {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  color: var(--floresta);
}

.fact .fv small {
  font-family: var(--mono);
  font-size: 0.42em;
  color: var(--steel);
  letter-spacing: 0.05em;
}

.fact .fl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 12px;
}

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

/* ═══ PÁGINA DE NOTÍCIAS ═══ */
.news-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--floresta);
}

.news-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: auto;
}

/* Destaque */
.news-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border: 1px solid var(--pearl);
  background: var(--white);
  margin-bottom: 48px;
}

.news-featured-photo {
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  min-height: 360px;
}

.news-featured-body {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 16px 0;
  color: var(--ink);
}

.news-featured-body h2 em {
  font-style: normal;
  color: var(--floresta);
}

.news-featured-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 20px;
}

/* Grid de cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  border: 1px solid var(--pearl);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.news-card:hover {
  border-color: var(--floresta);
  transform: translateY(-3px);
}

.news-card-photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.news-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.22;
  margin: 12px 0;
  color: var(--ink);
}

.news-card-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel);
  margin: 0 0 18px;
}

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

  .news-featured {
    grid-template-columns: 1fr;
  }
}

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

  .news-featured-body {
    padding: 32px;
  }
}

/* ═══ ARTIGO / POST DE NOTÍCIA ═══ */
.article-hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: 168px 0 76px;
  overflow: hidden;
}

.article-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.34);
}

.article-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 15, 0.45) 0%, rgba(14, 14, 15, 0.92) 100%);
}

.article-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.article-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
}

.article-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.07;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 18px 0 0;
  color: var(--bone);
}

.article-wrap {
  background: var(--bone);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 76px 48px;
}

.article-body .lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--steel);
  margin: 0 0 32px;
}

.article-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--grafite-2);
  margin: 0 0 24px;
}

.article-body h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
  margin: 52px 0 20px;
}

.article-body h2 em {
  font-style: normal;
  color: var(--floresta);
}

.article-body b,
.article-body strong {
  color: var(--ink);
}

.article-body ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--grafite-2);
}

.article-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.article-body blockquote {
  border-left: 3px solid var(--mint);
  margin: 36px 0;
  padding: 4px 0 4px 28px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--ink);
}

.article-tags {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px 76px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-tags span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--pearl);
  padding: 8px 14px;
}

@media (max-width: 600px) {
  .article-body {
    padding: 52px 24px;
  }

  .article-tags {
    padding: 0 24px 52px;
  }
}

/* ═══ EFEITO KEN BURNS — fundos "vivos" (CSS puro, sem vídeo) ═══ */
@keyframes kenburns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }

  100% {
    transform: scale(1.14) translate(-2%, -1.5%);
  }
}

.hero-photo,
.page-hero-photo,
.article-hero-photo {
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center;
}

/* variações de ritmo/direção p/ não ficar idêntico entre páginas */
.page-hero-photo {
  animation-duration: 30s;
}

.article-hero-photo {
  animation-duration: 34s;
}

/* Acessibilidade: desliga o movimento p/ quem prefere menos animação */
@media (prefers-reduced-motion: reduce) {

  .hero-photo,
  .page-hero-photo,
  .article-hero-photo {
    animation: none;
  }
}

/* ── Scroll reveal (fade-in + subida) — só com movimento permitido ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ═══ MENU MOBILE (hambúrguer + drawer) ═══ */
.nav-burger {
  display: none;
}

@media (max-width: 900px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--bone);
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* no mobile, esconde o botão "Simular crédito" do topo (usa hover); o CTA vai pro drawer */
  .nav-cta-wrap {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 86vw);
  background: var(--ink);
  border-left: 2px solid var(--mint);
  padding: 84px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: none;
}

.mobile-drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bone);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-drawer-close:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a.sub {
  font-size: 16px;
  padding-left: 16px;
  color: var(--pearl);
}

.mobile-nav a:active {
  color: var(--mint);
}

.mobile-group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 22px 0 6px;
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.mobile-drawer-cta .btn {
  justify-content: center;
}

/* ======================================================
   PAGINA FINANCIAMENTO IMOBILIARIO — Steps e FAQ
   ====================================================== */

/* Steps Grid — Como Funciona */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  padding: 36px 32px;
  border: 1px solid var(--pearl);
  background: var(--white);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  border-color: var(--floresta);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 61, 46, 0.08);
}

.step-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--mint);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.step-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}

.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* FAQ Accordion */
.faq-list {
  max-width: 900px;
}

.faq-item {
  border-top: 1px solid var(--pearl);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--pearl);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--floresta);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
  line-height: 1;
}

.faq-item[open] .faq-question {
  color: var(--floresta);
}

.faq-item[open] .faq-question::after {
  content: '+';
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--steel);
}

.faq-answer p+p {
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   CRÉDITO PJ — formulário multi-step
   ═══════════════════════════════════════════════════════════ */
.cpj-section {
  background: var(--ink);
  color: var(--bone);
  padding: 88px 0 100px;
}

.cpj-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* Indicador de etapas */
.cpj-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

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

.cpj-step-circle {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--silver);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.cpj-step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.3;
  transition: color 0.25s;
}

.cpj-step.is-active .cpj-step-circle {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.cpj-step.is-active .cpj-step-label {
  color: var(--bone);
}

.cpj-step.is-done .cpj-step-circle {
  border-color: var(--mint);
  color: var(--mint);
  font-size: 0;
  /* esconde o número, substituído pelo ✓ */
}

.cpj-step.is-done .cpj-step-circle::before {
  content: '✓';
  font-size: 15px;
}

.cpj-step-sep {
  flex: 1;
  height: 1px;
  min-width: 20px;
  background: rgba(255, 255, 255, 0.12);
  list-style: none;
}

/* Card */
.cpj-card {
  background: var(--grafite);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
}

.cpj-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint);
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cpj-head-count {
  color: var(--silver);
}

.cpj-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  padding-top: 0.04em;
  color: var(--bone);
}

.cpj-title em {
  font-style: normal;
  color: var(--mint);
}

.cpj-subhead {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 32px 0 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Campos */
.cpj-field {
  margin-bottom: 22px;
}

.cpj-field>label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.cpj-req {
  color: var(--mint);
}

.cpj-field input[type="text"],
.cpj-field input[type="email"],
.cpj-field input[type="tel"],
.cpj-field select {
  width: 100%;
  padding: 13px 15px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.cpj-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%),
    linear-gradient(135deg, var(--silver) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.cpj-field input:focus,
.cpj-field select:focus {
  outline: none;
  border-color: var(--mint);
}

.cpj-field input::placeholder {
  color: var(--steel);
}

.cpj-field input.has-error {
  border-color: #d9534f;
}

.cpj-input--xl {
  font-family: var(--display) !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  letter-spacing: 0.01em;
  padding: 20px 18px !important;
  text-align: center;
}

.cpj-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Escala mín/máx e mensagens */
.cpj-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fefdfd;
  margin-top: 10px;
}

.cpj-msg {
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
  min-height: 0;
}

.cpj-msg:empty {
  margin-top: 0;
}

.cpj-msg.is-erro {
  color: #e8705c;
}

.cpj-msg.is-aviso {
  color: #f0ad4e;
}

.cpj-msg.is-ok {
  color: var(--mint);
}

.cpj-msg.is-info {
  color: var(--pearl);
}

/* Critérios */
.cpj-crit {
  list-style: none;
  margin: 0 0 32px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--mint);
}

.cpj-crit li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pearl);
}

.cpj-crit li+li {
  margin-top: 8px;
}

.cpj-crit li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-family: var(--mono);
  color: var(--mint);
}

.cpj-crit li b {
  color: var(--bone);
  font-weight: 600;
}

.cpj-crit li.is-alert {
  color: #e8705c;
}

.cpj-crit li.is-alert::before {
  color: #e8705c;
}

/* Nota e legal */
.cpj-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pearl);
  text-align: center;
  margin: 28px 0 0;
}

.cpj-legal {
  font-size: 13px;
  line-height: 1.6;
  color: var(--steel);
  text-align: center;
  max-width: 60ch;
  margin: 24px auto 0;
}

/* Checkboxes */
.cpj-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pearl);
  cursor: pointer;
  margin-top: 14px;
}

.cpj-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 1px 0 0;
  cursor: pointer;
  accent-color: var(--mint);
}

.cpj-check:hover span {
  color: var(--bone);
}

.cpj-checkgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.cpj-consents {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ações */
.cpj-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cpj-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border: none;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, color 0.2s, border-color 0.2s;
}

.cpj-btn--primary {
  flex: 1;
  justify-content: center;
  background: var(--mint);
  color: var(--ink);
}

.cpj-btn--primary:hover:not(:disabled) {
  background: #2dd687;
}

.cpj-btn--ghost {
  background: transparent;
  color: var(--pearl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cpj-btn--ghost:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.cpj-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.cpj-btn-arrow {
  transition: transform 0.2s;
}

.cpj-btn:hover:not(:disabled) .cpj-btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .cpj-section {
    padding: 64px 0 76px;
  }

  .cpj-card {
    padding: 28px 22px;
  }

  .cpj-grid-2,
  .cpj-checkgrid {
    grid-template-columns: 1fr;
  }

  .cpj-steps {
    gap: 8px;
  }

  .cpj-step-label {
    display: none;
  }

  .cpj-step.is-active .cpj-step-label {
    display: block;
    font-size: 9px;
  }

  .cpj-actions {
    flex-direction: column-reverse;
  }

  .cpj-actions .cpj-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   HOME EQUITY — específicos (escolhas + slider)
   reaproveita as classes .cpj-* do formulário multi-step
   ═══════════════════════════════════════════════════════════ */
.cpj-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pearl);
  margin: 0 0 28px;
}

.cpj-intro b {
  color: var(--bone);
}

/* Cards de escolha (radio visual) */
.he-choices {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.he-choices--2 {
  grid-template-columns: 1fr 1fr;
}

.he-choice {
  position: relative;
  cursor: pointer;
  display: block;
}

.he-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.he-choice-box {
  display: block;
  height: 100%;
  padding: 24px 22px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.he-choice:hover .he-choice-box {
  border-color: rgba(62, 232, 154, 0.5);
}

.he-choice.is-selected .he-choice-box,
.he-choice input:checked+.he-choice-box {
  border-color: var(--mint);
  background: rgba(62, 232, 154, 0.07);
}

.he-choice-title {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin-bottom: 6px;
}

.he-choice.is-selected .he-choice-title {
  color: var(--mint);
}

.he-choice-desc {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--silver);
}

/* Slider de valor do empréstimo */
.he-slider-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.he-range-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  line-height: 1.7;
  margin: 16px 0 14px;
}

.he-range-scale b {
  color: var(--mint);
  font-size: 13px;
  letter-spacing: 0;
  font-family: var(--body);
}

.he-range-scale-right {
  text-align: right;
}

.he-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  cursor: pointer;
  margin: 4px 0;
}

.he-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--grafite);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--mint);
}

.he-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--grafite);
  cursor: pointer;
}

@media (max-width: 900px) {
  .he-choices--2 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   SIMULADOR IMOBILIÁRIO — hint, ações single e painel de resultado
   ═══════════════════════════════════════════════════════════ */
.cpj-wrap--narrow {
  max-width: 620px;
}

.cpj-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 8px;
}

.cpj-actions--single {
  justify-content: stretch;
}

.cpj-actions--single .cpj-btn {
  flex: 1;
}

/* Painel de resultado */
.sim-result-hero {
  text-align: center;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.sim-result-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}

.sim-result-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1;
  color: var(--mint);
  letter-spacing: 0.01em;
}

.sim-result-list {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
}

.sim-result-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.sim-result-list li span {
  color: var(--silver);
}

.sim-result-list li b {
  color: var(--bone);
  font-weight: 600;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════
   HOME · card CTA do simulador (substitui o form antigo)
   ═══════════════════════════════════════════════════════════ */
.sim-cta-card {
  display: flex;
  flex-direction: column;
}

.sim-cta-body {
  flex: 1;
  padding: 12px 0 32px;
}

.sim-cta-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--bone);
  margin: 0 0 18px;
  padding-top: 0.04em;
}

.sim-cta-title em {
  font-style: normal;
  color: var(--mint);
}

.sim-cta-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--pearl);
  margin: 0;
}

.sim-cta-btn {
  display: block;
  text-align: center;
  text-decoration: none;
}