html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(201, 168, 76, 0.1), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.03), transparent 26%),
    var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  flex-shrink: 0;
}

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

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
}

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

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0.75rem 0 1.25rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
}

.section-subtitle,
.contato__left-sub,
.diffs__intro,
.holding__intro,
.hero__desc,
.sobre__para,
.pqcard__desc,
.scard__desc,
.ccard p,
.ccard a,
.faq-content p,
.footer__brand p,
.hpillar p,
.hreason__desc,
.diff-item__desc,
.banner__text p {
  color: var(--muted-soft);
}

.section-subtitle {
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 2px;
  margin: 1rem 0;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
}

.section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
  text-align: center;
}

.section-header .divider {
  margin-inline: auto;
}

main {
  display: block;
}

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

  .section {
    padding: 4.25rem 0;
  }
}
