:root {
  --black: #070706;
  --ink: #15130f;
  --soft-black: #11100d;
  --gold: #d7aa43;
  --gold-light: #f4dc92;
  --green: #12351e;
  --paper: #f7f3ea;
  --muted: #c8c0ae;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.78)),
    url("assets/topo-rodape.png") top center / cover no-repeat;
  border-bottom: 2px solid rgba(215, 170, 67, 0.58);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: clamp(210px, 24vw, 330px);
  max-height: 88px;
  object-fit: contain;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 220, 146, 0.78);
  color: var(--gold-light);
  background: rgba(7, 7, 6, 0.42);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.menu a.is-active {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
}

.menu-button {
  display: none;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  padding: 10px 14px;
  font: inherit;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px 0 auto 0;
  height: min(760px, 85vh);
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.76)),
    url("assets/topo-rodape.png") center / cover no-repeat;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: clamp(42px, 7vw, 82px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 670px;
  color: #e9e0cf;
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: #161007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button.ghost {
  background: rgba(7, 7, 6, 0.45);
}

.hero-card,
.contact-card,
.quote-box,
.area-grid article {
  border: 1px solid rgba(215, 170, 67, 0.28);
  background: rgba(17, 16, 13, 0.86);
}

.hero-card {
  position: relative;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.premium-card {
  min-height: 470px;
  overflow: visible;
  padding: 42px 34px 32px;
  border-color: rgba(244, 220, 146, 0.45);
  background:
    linear-gradient(90deg, transparent 0 56%, rgba(18, 53, 30, 0.56) 56% 64%, transparent 64%),
    radial-gradient(circle at 82% 8%, rgba(244, 220, 146, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(9, 9, 8, 0.97), rgba(18, 17, 14, 0.92)),
    url("assets/topo-rodape.png") center / cover no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(244, 220, 146, 0.12);
}

.premium-card::before,
.premium-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.premium-card::before {
  inset: 14px;
  border: 1px solid rgba(215, 170, 67, 0.28);
}

.premium-card::after {
  left: 34px;
  right: 34px;
  bottom: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 170, 67, 0.78), transparent);
}

.card-monogram {
  position: absolute;
  right: -24px;
  bottom: -18px;
  color: rgba(244, 220, 146, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 148px;
  font-weight: 700;
  line-height: 1;
}

.card-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.card-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-card h2 {
  position: relative;
  max-width: 310px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 32px;
}

.hero-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.hero-card dl,
.hero-card dd {
  position: relative;
  margin: 0;
}

.hero-card div + div {
  margin-top: 16px;
}

.hero-card dt {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card dt span {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(215, 170, 67, 0.5);
  color: #161007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 11px;
  line-height: 1;
}

.hero-card dd {
  color: var(--paper);
  padding-left: 35px;
  font-size: 16px;
  line-height: 1.45;
}

.card-link {
  position: relative;
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.card-link:hover {
  color: var(--white);
}

.seal {
  position: absolute;
  top: -32px;
  right: 28px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  color: #160f05;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.8;
  text-align: center;
}

.seal span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.seal-image {
  position: absolute;
  top: -58px;
  right: 18px;
  z-index: 3;
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.48));
}

section {
  padding: 86px 0;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 52px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 6vw, 72px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #e5ddce;
  font-size: 19px;
}

.home-links {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.feature-link {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(215, 170, 67, 0.28);
  color: var(--paper);
  background: rgba(17, 16, 13, 0.86);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.feature-link span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.feature-link strong {
  display: block;
  margin: 20px 0 10px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
}

.feature-link p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.trust-strip div {
  padding: 22px;
  border-top: 1px solid rgba(215, 170, 67, 0.35);
  background: rgba(17, 16, 13, 0.48);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.intro-band,
.areas,
.mission,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.mission h2 {
  color: var(--gold-light);
  font-size: clamp(30px, 4vw, 52px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.two-column p,
.mission-copy p {
  color: #e5ddce;
  font-size: 18px;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 170, 67, 0.24);
  background: var(--soft-black);
}

.image-panel img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
}

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

.area-grid article {
  min-height: 220px;
  padding: 24px;
}

.area-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.area-grid h3 {
  margin: 18px 0 10px;
  color: var(--gold-light);
  font-size: 22px;
}

.area-grid p,
.contact-card p,
.quote-box p {
  color: var(--muted);
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
  border-top: 1px solid rgba(215, 170, 67, 0.22);
  border-bottom: 1px solid rgba(215, 170, 67, 0.22);
}

.quote-box {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: end;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(18, 53, 30, 0.82), rgba(17, 16, 13, 0.9)),
    url("assets/cartao-antigo-verso.jpeg") center / cover no-repeat;
}

.quote-box strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.1;
}

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

.contact-card {
  min-height: 250px;
  padding: 26px;
}

.contact-card h3 {
  color: var(--gold-light);
  font-size: 24px;
}

.action-card .button {
  margin-top: 12px;
}

.footer {
  padding: 34px 16px;
  border-top: 1px solid rgba(215, 170, 67, 0.42);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.88), rgba(7, 7, 6, 0.96)),
    url("assets/topo-rodape.png") bottom center / cover no-repeat;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: grid;
  justify-items: start;
  color: var(--gold-light);
}

.footer-logo {
  width: min(220px, 100%);
  object-fit: contain;
}

.footer-brand p {
  max-width: 230px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

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

.footer-info div {
  min-height: auto;
  padding-left: 16px;
  border-left: 1px solid rgba(215, 170, 67, 0.34);
}

.footer-info strong,
.footer strong {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-info span {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.footer-links {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(215, 170, 67, 0.16);
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.compact-page {
  min-height: 48vh;
}

.text-page,
.business-profile {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 0;
}

.text-page h2,
.business-profile h2 {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
}

.text-page p,
.business-profile p {
  color: #e5ddce;
}

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

.business-profile article {
  padding: 22px;
  border: 1px solid rgba(215, 170, 67, 0.25);
  background: rgba(17, 16, 13, 0.78);
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 7, 6, 0.98);
    border-bottom: 1px solid rgba(215, 170, 67, 0.25);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 14px 24px;
    border-top: 1px solid rgba(215, 170, 67, 0.12);
  }

  .menu a.is-active {
    border-bottom: 0;
    border-left: 3px solid var(--gold);
  }

  .hero,
  .two-column,
  .mission,
  .contact-grid,
  .home-links,
  .trust-strip,
  .business-profile,
  .footer-inner,
  .footer-info {
    grid-template-columns: 1fr;
  }

  .footer-info div {
    min-height: auto;
  }

  .hero {
    padding-top: 56px;
  }

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

@media (max-width: 560px) {
  .nav {
    width: min(100% - 22px, 1180px);
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 174px;
  }

  .hero,
  .page-hero,
  .home-links,
  .trust-strip,
  .text-page,
  .business-profile,
  .intro-band,
  .areas,
  .mission,
  .contact {
    width: min(100% - 22px, 1180px);
  }

  .hero-card {
    padding: 28px 20px;
  }

  .premium-card {
    min-height: 450px;
    padding: 34px 22px 28px;
  }

  .hero-card h2 {
    max-width: 250px;
    font-size: 27px;
  }

  .card-monogram {
    font-size: 110px;
  }

  .seal {
    right: 18px;
  }

  .seal-image {
    top: -44px;
    right: 12px;
    width: 104px;
    height: 104px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .footer {
    padding: 30px 11px;
  }
}
