@font-face {
  font-family: 'VONCA';
  src: url('fonts/vonca/vonca-regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'VONCA';
  src: url('fonts/vonca/vonca-bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'SATOSHI';
  src: url('fonts/satoshi/Satoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'SATOSHI';
  src: url('fonts/satoshi/Satoshi-Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'SATOSHI';
  src: url('fonts/satoshi/Satoshi-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

:root {
  --petroleum: #00354C;
  --graphite: #00354C;
  --offwhite: #F7F4EF;
  --gold: #4FA4CC;
  --secondary: #B18B6A;
  --text-dark: #1a1a1a;
  --text-muted: #4a4a4a;
  --line-light: #E8E3DA;
  --line-dark: rgba(255, 255, 255, 0.18);
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SATOSHI", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--offwhite);
  line-height: 1.8;
}

h1,
h2,
h3,
p,
ul,
blockquote,
figure {
  margin: 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero__container {
  width: min(1320px, 95vw);
  margin: 0 auto;
}

.narrow {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.topbar.is-scrolled {
  border-bottom-color: var(--gold);
}

.topbar__inner {
  width: min(1320px, 95vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(130deg, rgba(79, 164, 204, 0.04) 0%, rgba(79, 164, 204, 0) 60%),
    var(--petroleum);
  color: #ffffff;
  padding: 60px 0 70px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 660px;
}

.hero__kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.eyebrow--secondary {
  color: var(--secondary) !important;
}

.eyebrow--secondary::before {
  background: var(--secondary) !important;
}

.hero__hairline {
  height: 1px;
  width: 120px;
  background: var(--gold);
  margin-bottom: 18px;
}

h1,
section h2,
.hero__card h2:not(.title--featured),
.cta h2 {
  font-family: "SATOSHI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.13;
}

.title--featured {
  font-family: "VONCA", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em;
}

.hero__card h2.title--featured {
  font-family: "VONCA", sans-serif !important;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 4.15vw, 4.45rem);
  text-transform: uppercase;
  max-width: 14ch;
}

.hero h1 {
  display: grid;
  gap: 0.04em;
  line-height: 0.98;
}

.hero__title-row {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.hero__title-accent,
.hero__title-highlight {
  color: var(--gold);
  font-size: 1.08em;
  font-weight: 600;
}

.hero__title-accent {
  position: relative;
  display: inline-block;
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.05em;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.hero__title-highlight {
  font-style: italic;
  text-transform: none;
}

section h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  color: inherit;
  margin-bottom: 22px;
  max-width: 23ch;
}

section h2 em,
.cta h2 em {
  font-style: italic;
  color: var(--gold);
}

.em--secondary {
  color: var(--secondary) !important;
}

.hero__subtitle {
  margin-top: 24px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__cta-divider {
  width: 1px;
  height: 26px;
  background: rgba(79, 164, 204, 0.7);
}

.hero__visual {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.hero__photo {
  position: relative;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

.hero__photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 34, 51, 0) 58%, rgba(13, 34, 51, 0.72) 100%);
}

.hero__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.hero__icon {
  color: var(--gold);
  font-size: 1rem;
}

.hero__card h2 {
  font-size: clamp(2rem, 3vw, 2.65rem);
  margin: 0 0 12px;
  max-width: 50ch;
  line-height: 1.15;
}

.hero__card-lead {
  max-width: 54ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero__card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px 28px;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  position: relative;
  padding: 108px 0;
}

#problema {
  padding-top: 116px;
  padding-bottom: 92px;
}

#metodo {
  padding-top: 100px;
  padding-bottom: 102px;
  box-shadow: inset 0 1px 0 rgba(79, 164, 204, 0.16), inset 0 -1px 0 rgba(79, 164, 204, 0.16);
}

#processo {
  padding-top: 94px;
  padding-bottom: 86px;
}

#diferenciais {
  padding-top: 88px;
  padding-bottom: 108px;
}

.section--light {
  background: var(--offwhite);
  color: var(--text-dark);
}

.section--dark {
  background: var(--petroleum);
  color: #ffffff;
}

.section--graphite {
  background: var(--graphite);
  color: #ffffff;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  margin-top: -8px;
  margin-bottom: 34px;
  max-width: 76ch;
}

.section-lead {
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 34px;
  max-width: 68ch;
  font-size: 1.03rem;
  line-height: 1.76;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}

.split-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.problem-grid--symptoms {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.problem-item {
  position: relative;
  border-left: 1px solid var(--petroleum);
  padding: 18px 20px 18px 22px;
  background: var(--offwhite);
  box-shadow: 0 2px 10px rgba(12, 25, 34, 0.04);
  min-height: 100%;
}

.problem-item::after {
  content: none;
}

.problem-item p {
  font-weight: 600;
  color: #1a1a1a;
}

.insight-box {
  border: 1px solid rgba(79, 164, 204, 0.48);
  border-left: 3px solid var(--secondary);
  background: var(--offwhite);
  padding: 26px 30px;
  box-shadow: 0 16px 34px rgba(12, 25, 34, 0.06);
}

.insight-box span,
.method-context span {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.insight-box p {
  color: var(--text-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.28;
}

.method-context {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px 26px;
  margin-bottom: 24px;
}

.method-context ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.method-context li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  line-height: 1.2;
  padding: 10px 12px;
}

.section--dark .card {
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.96);
}

.method-pillars .card {
  min-height: 100%;
}

.card--wide {
  grid-column: 1 / -1;
}

.box,
.card {
  border-radius: var(--radius);
}

.box {
  padding: 34px;
  border: 1px solid var(--line-light);
  background: var(--offwhite);
}

.box p {
  color: var(--text-muted);
}

.box--dark {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.box--dark p {
  color: rgba(255, 255, 255, 0.84);
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--petroleum);
  border-radius: 18px;
  background: var(--offwhite);
  padding: 34px;
  box-shadow: 0 3px 12px rgba(12, 25, 34, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
  content: none;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 25, 34, 0.1), 0 0 20px rgba(177, 139, 106, 0.15);
  border-color: var(--secondary);
  background: var(--offwhite);
}

.card--secondary {
  border-left-color: var(--secondary);
}

.card--secondary:hover {
  border-left-color: var(--secondary);
  box-shadow: 0 12px 28px rgba(12, 25, 34, 0.1), 0 0 24px rgba(177, 139, 106, 0.2);
}

.card__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: #2f4a57;
}

.card__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.card__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.card h3 {
  font-size: 17px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  max-width: 26ch;
}

.card p {
  color: #4a4a4a;
}

.card__title--single-line {
  max-width: none;
  white-space: nowrap;
}

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal .reveal-group [data-reveal]:nth-of-type(2) {
  --reveal-delay: 80ms;
}

.js-reveal .reveal-group [data-reveal]:nth-of-type(3) {
  --reveal-delay: 140ms;
}

.js-reveal .reveal-group [data-reveal]:nth-of-type(4) {
  --reveal-delay: 200ms;
}

.js-reveal .grid [data-reveal],
.js-reveal .problem-grid [data-reveal] {
  transition-delay: calc(var(--reveal-index, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  --process-progress: 0%;
}

.process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 1px;
  background: rgba(79, 164, 204, 0.32);
}

.process::after {
  content: "";
  position: absolute;
  left: 0;
  top: 44px;
  width: var(--process-progress);
  max-width: 100%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(79, 164, 204, 0.32);
  transition: width 0.18s ease-out;
}

.process__step {
  position: relative;
  background: var(--offwhite);
  border: 1px solid var(--line-light);
  padding: 20px;
  z-index: 1;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process__step:hover {
  transform: translateY(-3px);
  border-color: var(--secondary);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.process__step span {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--petroleum);
  line-height: 1;
}

.process__step h3 {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #23333c;
}

.process__step p {
  font-size: 1rem;
  color: #4a4a4a;
}

.authority-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.authority-photo {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.authority-photo img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.authority-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28, 43, 53, 0) 55%, rgba(28, 43, 53, 0.92) 100%);
}

.credentials-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.credentials-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.credentials-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

blockquote {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", serif;
  font-size: 1.24rem;
  line-height: 1.55;
  padding-left: 34px;
}

blockquote span {
  position: absolute;
  left: 0;
  top: -24px;
  color: rgba(13, 34, 51, 0.12);
  font-size: 72px;
}

blockquote cite {
  display: block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

.faq-section {
  overflow: hidden;
}

.faq-section::after {
  content: "?";
  position: absolute;
  right: -34px;
  top: 60px;
  font-family: "Playfair Display", serif;
  font-size: 200px;
  color: rgba(13, 34, 51, 0.04);
  line-height: 1;
  pointer-events: none;
}

.accordion {
  border-top: 1px solid var(--line-light);
}

.accordion__item {
  border-bottom: 1px solid var(--line-light);
}

.accordion__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  width: 100%;
  padding: 22px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  color: var(--petroleum);
}

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

.accordion__item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.55rem;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin-left: 14px;
}

.accordion__item[open] summary::after {
  content: "−";
}

.accordion__item p {
  color: var(--text-muted);
  padding-bottom: 22px;
}

.closing {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.22rem;
  color: var(--petroleum);
  background: var(--offwhite);
}

.closing em {
  color: var(--gold);
  font-style: italic;
}

.cta {
  background: var(--petroleum);
  color: #ffffff;
  padding: 120px 0;
  border-top: 1px solid var(--gold);
}

.cta__inner {
  text-align: center;
  padding: 56px 20px;
}

.cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 14px;
  max-width: none;
  text-transform: none;
}

.cta p {
   color: rgba(255, 255, 255, 0.82);
   margin-bottom: 28px;
}

.cta__location {
   margin-top: 40px;
}

.cta__location-divider {
   width: 100%;
   height: 1px;
   background: rgba(79, 164, 204, 0.3);
   margin: 24px 0;
}

.cta__location-title {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.cta__location {
    margin-top: 40px;
}

.cta__location-divider {
    width: 100%;
    height: 1px;
    background: rgba(79, 164, 204, 0.3);
    margin: 24px 0;
}

.cta__location-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
    font-size: 1rem;
    line-height: 1.5;
    transition: opacity 0.3s ease;
}

.cta__location-link:visited {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
}

.cta__location-link:hover {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
    opacity: 0.8;
}

.cta__location-link:active {
    color: rgba(255, 255, 255, 0.82) !important;
    text-decoration: none !important;
}

.cta__location-icon {
    width: 28px !important;
    height: 28px !important;
    color: var(--gold) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.trust-signals {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  padding: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn--wa {
  gap: 10px;
}

.btn__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.btn__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.btn--primary {
  background: var(--gold);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--petroleum);
  padding: 16px 36px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transition: all 0.3s ease;
}

.btn--primary:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(177, 139, 106, 0.3);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--petroleum);
  color: var(--petroleum);
  padding: 16px 36px;
}

.btn--outline:hover {
  background: var(--petroleum);
  color: #ffffff;
  border-color: var(--secondary);
}

.topbar .btn--primary {
  padding: 12px 22px;
}

.hero .btn--outline {
  border-color: rgba(79, 164, 204, 0.8);
  color: #ffffff;
}

.hero .btn--outline:hover {
  background: rgba(79, 164, 204, 0.18);
}

.footer {
  background: #0a1a24;
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}

.footer__inner {
  border-top: 1px solid var(--gold);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer__credit {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

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

.footer__credit a:hover {
   color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1100px) {
   .hero__grid,
  .authority-layout,
  .grid--2,
  .process {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .problem-grid--symptoms {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero__content {
    max-width: none;
  }

  h1 {
    max-width: none;
  }

  .process::before {
    left: 16px;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .process::after {
    left: 16px;
    top: 0;
    width: 1px;
    height: var(--process-progress);
    max-height: 100%;
  }

  .process__step {
    padding-left: 34px;
  }

  .authority-photo {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .hero__grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.05rem);
  }

  .hero__subtitle {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero__photo {
    height: 300px;
  }

  .hero__card {
    width: 100%;
    margin-top: 0;
    padding: 24px;
  }

  .hero__actions {
    display: grid;
    gap: 12px;
  }

  .hero__cta-divider {
    display: none;
  }

  .btn--primary,
  .btn--outline {
    width: 100%;
    min-height: 54px;
    padding-inline: 20px;
    text-align: center;
  }

  .card__title--single-line {
    white-space: normal;
    max-width: none;
  }

  .section,
  .cta {
    padding: 92px 0;
  }

  .insight-box,
  .method-context {
    padding: 22px;
  }

  #problema,
  #metodo,
  #processo,
  #diferenciais {
    padding-top: 92px;
    padding-bottom: 92px;
    box-shadow: none;
  }

  h1,
  section h2 {
    max-width: none;
  }

  .accordion__item summary {
    padding: 20px 0;
    font-size: 1.16rem;
  }

  .trust-signals {
    font-size: 1rem;
    gap: 12px;
  }

  blockquote {
    text-align: center;
    padding-left: 0;
    font-size: 1.08rem;
  }

  blockquote span {
     position: static;
     display: block;
     font-size: 54px;
     margin-bottom: -14px;
   }

   .cta__location-title {
     font-size: 1.3rem;
   }

   .cta__location-item {
     flex-direction: column;
     align-items: center;
     text-align: center;
   }

    .cta__location-text {
      font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
  .brand__logo {
    height: 36px;
  }

  .topbar__inner {
    padding: 10px 0;
    gap: 12px;
  }

  .topbar .btn--primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .card {
    padding: 24px 20px;
  }

  .card h3 {
    font-size: 16px;
    line-height: 1.3;
    max-width: none;
  }

  .card p {
    font-size: 0.95rem;
  }
}
