@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0d203b;
  --navy-deep: #08162a;
  --navy-soft: #173352;
  --gold: #ba7520;
  --gold-light: #d09a52;
  --ivory: #f4ede3;
  --paper: #fbf8f2;
  --white: #ffffff;
  --ink: #172033;
  --muted: #687184;
  --line: rgba(13, 32, 59, 0.14);
  --shadow: 0 24px 70px rgba(8, 22, 42, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  overflow: hidden;
}

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

.section {
  padding: 112px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold-light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.contact-page-copy h1,
.contact-form-heading h2,
.investment-copy h2,
.next-step-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-primary:hover {
  background: #a96719;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: var(--ivory);
  color: var(--navy);
}

.button-light:hover {
  background: var(--white);
}

.button-arrow::after {
  content: "→";
  font-size: 1.15rem;
}

/* Header */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.site-header-solid {
  position: relative;
  background: var(--navy);
}

.site-header-inner {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
}

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

.brand-symbol {
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: 0.035em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.header-cta {
  min-height: 44px;
  padding: 11px 20px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: url("../images/hero-consultor.png") 63% center / cover no-repeat;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(9, 11, 17, 0.96) 0%,
      rgba(9, 11, 17, 0.86) 40%,
      rgba(9, 11, 17, 0.22) 76%
    ),
    linear-gradient(0deg, rgba(9, 11, 17, 0.52), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 100px;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 6.2vw, 6.15rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.8;
}

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

.hero-stats {
  display: grid;
  max-width: 720px;
  margin-top: 66px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-stat strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

/* Solution */

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

.benefit-card {
  min-height: 290px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.benefit-card:hover,
.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.benefit-card h3,
.module-card h3,
.platform-card h3,
.process-step h3,
.contact-info-card h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.benefit-card p,
.module-card p,
.platform-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
}

/* Modules */

.modules-section {
  position: relative;
  background: var(--navy);
  color: var(--white);
}

.modules-section::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(208, 154, 82, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateY(-46%);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.module-card {
  position: relative;
  min-height: 420px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.module-card::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 44px solid rgba(186, 117, 32, 0.1);
  border-radius: 50%;
  content: "";
}

.module-label {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-card h3 {
  max-width: 430px;
  margin-top: 54px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.module-card p {
  position: relative;
  z-index: 1;
  max-width: 490px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.module-card strong {
  color: var(--white);
}

/* Impact */

.impact-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 22, 42, 0.98) 0%, rgba(8, 22, 42, 0.86) 55%, rgba(8, 22, 42, 0.32) 100%),
    url("../images/mapa-caminhos.png") center / cover no-repeat;
  color: var(--white);
}

.impact-content {
  max-width: 660px;
}

.impact-number {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(4.8rem, 11vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.impact-content h2 {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.impact-content p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

/* Platform */

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

.platform-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.platform-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--ivory);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.platform-card h3 {
  margin-top: 24px;
}

/* Clients */

.clients-section {
  position: relative;
  background: var(--navy-deep);
}

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

.client-card {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--ivory);
  color: var(--navy);
  text-align: center;
}

.client-card img {
  width: auto;
  max-width: 180px;
  max-height: 76px;
  object-fit: contain;
}

.client-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

/* Process */

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

.process-step {
  position: relative;
  padding: 32px 34px 32px 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: 24px;
  left: 64px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-step h3 {
  margin-top: 28px;
}

/* Investment */

.investment-section {
  padding: 0 0 112px;
}

.investment-panel {
  position: relative;
  display: grid;
  min-height: 480px;
  align-items: end;
  padding: 64px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 12%, rgba(208, 154, 82, 0.25), transparent 32%),
    var(--navy);
  color: var(--white);
  grid-template-columns: 1fr auto;
  gap: 48px;
}

.investment-panel::after {
  position: absolute;
  top: 56px;
  right: 62px;
  width: 150px;
  height: 120px;
  background: url("../images/recupera-prime-symbol.png") center / contain no-repeat;
  content: "";
  opacity: 0.16;
}

.investment-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

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

.investment-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.investment-action {
  position: relative;
  z-index: 1;
}

/* Next step */

.next-step-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(8, 22, 42, 0.97), rgba(8, 22, 42, 0.76)),
    url("../images/escritorio-reuniao.png") center / cover no-repeat;
  color: var(--white);
}

.next-step-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 86px;
}

.next-step-copy h2 {
  color: var(--white);
}

.next-step-copy p {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.next-step-copy .button {
  margin-top: 34px;
}

.contact-summary {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contact-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-summary a,
.contact-summary address {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.55;
}

.contact-summary-item + .contact-summary-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Footer */

.site-footer {
  padding: 70px 0 28px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 72px;
  padding-bottom: 50px;
}

.footer-intro p {
  max-width: 400px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-column h3 {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-style: normal;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

/* Contact page */

.contact-page-hero {
  position: relative;
  padding: 112px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(186, 117, 32, 0.25), transparent 30%),
    var(--navy);
  color: var(--white);
}

.contact-page-hero::after {
  position: absolute;
  right: 7%;
  bottom: -95px;
  width: 290px;
  height: 240px;
  background: url("../images/recupera-prime-symbol.png") center / contain no-repeat;
  content: "";
  opacity: 0.1;
}

.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
}

.contact-page-copy h1 {
  color: var(--white);
}

.contact-page-copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.contact-page-details {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-detail + .contact-detail {
  margin-top: 25px;
}

.contact-detail span {
  display: block;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail address {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.96rem;
  font-style: normal;
}

.whatsapp-link {
  margin-top: 30px;
}

.contact-form-section {
  padding: 110px 0 120px;
}

.contact-form-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.contact-form-heading {
  position: sticky;
  top: 40px;
}

.contact-form-heading p {
  margin: 24px 0 0;
  color: var(--muted);
}

.contact-form-heading .form-note {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
}

.form-field label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(13, 32, 59, 0.18);
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(186, 117, 32, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9a9fab;
}

.consent-field {
  display: grid;
  align-items: start;
  margin: 5px 0 28px;
  grid-template-columns: auto 1fr;
  gap: 11px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

/* Responsive */

@media (max-width: 1080px) {
  .site-header-inner {
    gap: 24px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .platform-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .next-step-grid,
  .contact-form-grid {
    gap: 52px;
  }

  .footer-main {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .site-header-inner {
    min-height: 84px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 780px;
    background:
      linear-gradient(90deg, rgba(8, 22, 42, 0.98), rgba(8, 22, 42, 0.76)),
      url("../images/hero-consultor.png") 62% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(3rem, 10vw, 5.4rem);
  }

  .modules-grid,
  .next-step-grid,
  .contact-page-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 360px;
  }

  .investment-panel {
    min-height: 460px;
    align-items: end;
    padding: 50px;
    grid-template-columns: 1fr;
  }

  .investment-action {
    justify-self: start;
  }

  .next-step-grid,
  .contact-page-grid,
  .contact-form-grid {
    gap: 48px;
  }

  .contact-page-details {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .contact-form-heading {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header-inner {
    min-height: 76px;
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 40px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy span {
    font-size: 0.6rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 132px 0 72px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stat {
    display: grid;
    align-items: baseline;
    grid-template-columns: 100px 1fr;
    gap: 12px;
  }

  .hero-stat span {
    margin-top: 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .contact-page-copy h1,
  .contact-form-heading h2,
  .investment-copy h2,
  .next-step-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .benefits-grid,
  .platform-grid,
  .clients-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .platform-card {
    min-height: auto;
    padding: 28px;
  }

  .module-card {
    min-height: 340px;
    padding: 32px 28px;
  }

  .module-card h3 {
    margin-top: 44px;
  }

  .impact-section {
    min-height: 590px;
  }

  .impact-number {
    font-size: 4.5rem;
  }

  .client-card {
    min-height: 145px;
  }

  .process-step {
    padding: 16px 0 28px;
  }

  .investment-section {
    padding-bottom: 72px;
  }

  .investment-panel {
    min-height: 520px;
    padding: 34px 26px;
    border-radius: var(--radius-md);
  }

  .investment-panel::after {
    top: 35px;
    right: 24px;
    width: 120px;
    height: 96px;
  }

  .investment-action,
  .investment-action .button {
    width: 100%;
  }

  .next-step-section {
    padding: 82px 0;
  }

  .contact-page-hero {
    padding: 82px 0 76px;
  }

  .contact-form-section {
    padding: 76px 0 84px;
  }

  .contact-form {
    padding: 27px 20px;
    border-radius: var(--radius-md);
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Component bindings */

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  background: #a96719;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-top: 62px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-assurances span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.hero-assurances i {
  margin-right: 8px;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 32px;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  padding-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  transform: translateX(50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--gold-light);
}

.section-light {
  background: var(--paper);
}

.section-ivory {
  background: var(--ivory);
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

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

.benefit-card {
  position: relative;
  overflow: hidden;
}

.card-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 180ms ease;
}

.benefit-card:hover .card-line {
  transform: scaleX(1);
}

.modules-heading h2,
.modules-heading > p:last-child {
  color: var(--white);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.module-card > span {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.module-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.module-card li {
  display: grid;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  grid-template-columns: 22px 1fr;
}

.module-card li i {
  color: var(--gold-light);
  font-style: normal;
}

.impact-section {
  background: var(--navy-deep);
}

.impact-map,
.impact-shade {
  position: absolute;
  inset: 0;
}

.impact-map {
  background: url("../images/mapa-recuperacao.png") center / cover no-repeat;
}

.impact-shade {
  background: linear-gradient(
    90deg,
    rgba(8, 22, 42, 0.96) 0%,
    rgba(8, 22, 42, 0.8) 50%,
    rgba(8, 22, 42, 0.96) 100%
  );
}

.impact-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  text-align: center;
}

.impact-content > p:first-child {
  max-width: none;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.impact-value {
  display: grid;
  justify-items: center;
}

.impact-value span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
}

.impact-value strong {
  margin-top: 10px;
  color: var(--gold-light);
  font-size: clamp(3.5rem, 7.2vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  white-space: nowrap;
}

.impact-note {
  max-width: 680px !important;
  margin: 32px auto 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

.platform-heading {
  max-width: none;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
}

.platform-heading > p {
  margin: 0;
  padding-bottom: 8px;
}

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

.capability-card {
  min-height: 250px;
  padding: 32px;
  border: 1px solid rgba(13, 32, 59, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.capability-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
}

.capability-card h3 {
  margin: 25px 0 11px;
  color: var(--navy);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
}

.client-section {
  padding: 108px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.client-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: 1fr 0.65fr;
  gap: 70px;
}

.client-heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.client-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.64);
}

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

.process-grid > article {
  position: relative;
  padding: 32px 34px 32px 0;
}

.process-grid > article:not(:last-child)::after {
  position: absolute;
  top: 56px;
  right: 24px;
  left: 64px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid > article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-grid > article h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.process-grid > article p {
  margin: 0;
  color: var(--muted);
}

.investment-section {
  padding: 100px 0;
  background: var(--gold);
  color: var(--white);
}

.investment-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
}

.investment-grid h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.investment-section .eyebrow {
  color: var(--navy);
}

.investment-copy p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.investment-copy .button {
  background: var(--navy);
}

.investment-copy .button:hover {
  background: var(--navy-deep);
}

.contact-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.contact-background,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-background {
  background: url("../images/escritorio.png") center / cover no-repeat;
}

.contact-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 22, 42, 0.98),
    rgba(8, 22, 42, 0.73)
  );
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  padding: 100px 0;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 88px;
}

.contact-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.contact-card > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 14px 0 26px;
  color: var(--white);
  font-size: 1.5rem;
}

.contact-card dl,
.contact-card dd {
  margin: 0;
}

.contact-card dl > div {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card dd {
  margin-top: 6px;
  color: var(--white);
  font-size: 0.92rem;
}

.footer-main > div:first-child > p {
  max-width: 400px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-links > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-hero {
  position: relative;
  padding: 112px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(186, 117, 32, 0.24), transparent 30%),
    var(--navy);
  color: var(--white);
}

.contact-hero::after {
  position: absolute;
  right: 7%;
  bottom: -85px;
  width: 270px;
  height: 220px;
  background: url("../images/recupera-prime-symbol.png") center / contain no-repeat;
  content: "";
  opacity: 0.1;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 86px;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-hero-grid > div > p:last-child {
  max-width: 650px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.03rem;
}

.contact-hero-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.contact-hero-card > span {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-hero-card > a:not(.button) {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-weight: 600;
}

.contact-hero-card > p {
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.whatsapp-button {
  margin-top: 26px;
}

.contact-form-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.contact-form-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-topics {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-topics span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-topics span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.contact-form > label,
.contact-form .form-row > label {
  display: grid;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(13, 32, 59, 0.18);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(186, 117, 32, 0.12);
}

.form-consent {
  display: grid !important;
  align-items: start;
  margin: 4px 0 28px !important;
  grid-template-columns: auto 1fr;
  gap: 11px !important;
  color: var(--muted) !important;
  font-size: 0.77rem !important;
  font-weight: 400 !important;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit {
  width: 100%;
  border: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .benefit-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid > article:not(:last-child)::after {
    display: none;
  }
}

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

  .site-header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: var(--white);
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: 230px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: var(--navy-deep);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
    font-weight: 600;
  }

  .module-grid,
  .platform-heading,
  .client-heading,
  .investment-grid,
  .contact-grid,
  .contact-hero-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .platform-heading,
  .client-heading,
  .investment-grid,
  .contact-grid,
  .contact-hero-grid,
  .contact-form-grid {
    gap: 46px;
  }

  .contact-grid {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .header-cta {
    display: none;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-assurances {
    display: grid;
    margin-top: 42px;
  }

  .benefit-grid,
  .capability-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .platform-heading,
  .client-heading {
    display: grid;
  }

  .impact-value strong {
    font-size: clamp(2.65rem, 12.2vw, 4rem);
  }

  .contact-hero {
    padding: 82px 0 76px;
  }
}

/* WordPress */

.admin-bar .site-header {
  top: 32px;
}

.form-feedback {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 600;
}

.form-feedback-success {
  border: 1px solid rgba(40, 128, 78, 0.24);
  background: rgba(40, 128, 78, 0.1);
  color: #276c45;
}

.form-feedback-error {
  border: 1px solid rgba(166, 55, 55, 0.22);
  background: rgba(166, 55, 55, 0.08);
  color: #933636;
}

.generic-page {
  padding-top: 92px;
  background: var(--paper);
}

.generic-content {
  max-width: 860px;
}

.generic-content h1 {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.entry-content {
  color: var(--muted);
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
