:root {
  --purple: #170821;
  --purple2: #25102f;
  --gold: #c99a55;
  --gold2: #edcc93;
  --cream: #f5f2ec;
  --ink: #18151b;
  --muted: #716b74;
  --line: rgba(201, 154, 85, 0.28);
  --display: "Playfair Display", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 84px;
  padding: 10px clamp(22px, 6vw, 105px);
  background: rgba(12, 8, 14, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}
.brand img {
  display: block;
  width: 72px;
  height: 64px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.main-nav a {
  opacity: 0.72;
}
.main-nav a:hover {
  color: var(--gold2);
  opacity: 1;
}
.nav-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.gold {
  background: var(--gold2);
  color: #1a111d;
}
.button.dark {
  background: var(--purple);
  color: #fff;
}
.button.outline {
  border-color: var(--gold);
  color: var(--gold2);
}
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  min-height: calc(100vh - 84px);
  padding: clamp(75px, 9vw, 130px) clamp(22px, 7vw, 120px);
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(201, 154, 85, 0.22),
      transparent 26%
    ),
    #0b090c;
  color: #fff;
}
.hero-copy {
  max-width: 760px;
}
.eyebrow,
.section-head > span,
.story-card > span,
.office-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1,
.section-head h2,
.story-card h2,
.final-cta h2 {
  margin: 18px 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero h2 {
  margin: 0 0 26px;
  color: var(--gold2);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 600;
}
.hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}
.hero .button {
  margin-top: 22px;
}
.arch {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 260px 260px 16px 16px;
  background: var(--purple);
}
.arch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .arch {
  height: min(590px, 68vh);
}
.section {
  padding: clamp(85px, 10vw, 145px) clamp(22px, 7vw, 120px);
}
.section-head {
  max-width: 800px;
}
.section-head h2 {
  color: var(--purple);
  font-size: clamp(40px, 5vw, 70px);
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.section-head.center {
  margin: 0 auto;
  text-align: center;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p {
  color: rgba(255, 255, 255, 0.62);
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 60px 0 38px;
  border-top: 1px solid rgba(23, 8, 33, 0.15);
}
.step-grid article {
  position: relative;
  padding: 30px 22px;
  border-right: 1px solid rgba(23, 8, 33, 0.12);
}
.step-grid article:last-child {
  border: 0;
}
.step-grid b {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}
.step-grid img {
  width: 52px;
  height: 52px;
  margin: 28px 0 20px;
  object-fit: contain;
}
.step-grid h3 {
  min-height: 56px;
  margin: 0 0 10px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 21px;
}
.step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.dark-section {
  background: #0b090c;
  color: #fff;
}
.why,
.location {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
}
.why > div > p,
.location > div > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.8;
}
.why .button {
  margin-top: 20px;
}
.image-arch {
  height: 540px;
}
.team {
  background: #fff;
}
.team-feature {
  max-width: 560px;
  margin: 60px auto 0;
}
.team-feature .arch {
  height: 560px;
}
.clients {
  text-align: center;
}
.client-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 30px);
  width: min(100%, 1320px);
  margin: 48px auto 42px;
}
.client-cards article {
  display: grid;
  place-items: end start;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 200px 200px 8px 8px;
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(201, 154, 85, 0.3),
      transparent 30%
    ),
    var(--purple2);
  color: var(--gold2);
  font-family: var(--display);
  font-size: 24px;
}
.story {
  background: var(--cream);
}
.story-card {
  max-width: 1000px;
  margin: auto;
  padding: clamp(35px, 6vw, 75px);
  border: 1px solid rgba(23, 8, 33, 0.15);
  background: #fff;
  text-align: center;
}
.story-card h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.story-card p {
  color: var(--muted);
  line-height: 1.7;
}
.story-card .button {
  margin-top: 18px;
}
.office-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--purple2);
}
.office-card h3 {
  color: #fff;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.25;
}
.office-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.partners {
  background: #fff;
}
.partner-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 45px;
  margin-top: 60px;
  padding: 35px;
  border-top: 1px solid rgba(23, 8, 33, 0.12);
  border-bottom: 1px solid rgba(23, 8, 33, 0.12);
}
.partner-icons img {
  width: 75px;
  height: 65px;
  object-fit: contain;
}
.final-cta {
  text-align: center;
}
.final-cta h2 {
  max-width: 900px;
  margin: 18px auto;
  font-size: clamp(42px, 5.5vw, 76px);
}
.final-cta p {
  max-width: 720px;
  margin: 12px auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.7;
}
.final-cta .button {
  margin-top: 28px;
}
.key {
  font-size: 42px;
}
.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 42px;
  padding: 70px clamp(22px, 7vw, 120px) 30px;
  background: var(--purple);
  color: #fff;
}
.footer-about img {
  width: min(100%, 230px);
  height: auto;
  border-radius: 8px;
}
.footer h3 {
  color: var(--gold2);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer a,
.footer p {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.6;
}
.footer-bottom {
  position: relative;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 28px;
  border-top: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.footer-copyright,
.footer-security,
.footer-legal {
  display: flex;
  align-items: center;
}

.footer-copyright {
  gap: 16px;
}

.footer-copyright > .material-symbols-outlined {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(232, 177, 56, 0.42);
  border-radius: 7px;
  color: #e8b138;
  font-size: 29px;
}

.footer-copyright strong,
.footer-copyright small,
.footer-security strong,
.footer-security small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-security {
  gap: 14px;
  min-width: 285px;
  padding: 13px 22px;
  border: 1px solid rgba(232, 177, 56, 0.38);
  border-radius: 7px;
  justify-content: center;
}

.footer-security > .material-symbols-outlined {
  color: #e8b138;
  font-size: 25px;
}

.footer-legal {
  justify-content: flex-end;
  gap: 0;
}

.footer .footer-legal a {
  margin: 0;
  padding: 2px 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  white-space: nowrap;
}

.footer .footer-legal a + a {
  border-left: 1px solid rgba(232, 177, 56, 0.5);
}

@media (max-width: 1100px) {
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-legal {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-security,
  .footer-legal {
    grid-column: auto;
  }

  .footer-security {
    width: 100%;
    min-width: 0;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: #b98520;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 31px 31px, 100% 1px;
}

.footer::after {
  content: none;
  display: none;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
}
.whatsapp img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1100px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-grid article {
    border-bottom: 1px solid rgba(23, 8, 33, 0.12);
  }
  .step-grid article:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
  }
  .nav-toggle span {
    height: 1px;
    background: var(--gold2);
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .site-header.menu-open .main-nav {
    grid-column: 1/-1;
    display: grid;
    gap: 0;
  }
  .site-header.menu-open .main-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero,
  .why,
  .location,
  .footer {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-visual {
    max-width: 560px;
    margin: auto;
  }
  .client-cards {
    grid-template-columns: 1fr;
  }
  .client-cards article {
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
}
@media (max-width: 650px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
  .step-grid article {
    padding: 28px 0;
    border-right: 0;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }
  .hero-visual .arch,
  .image-arch,
  .team-feature .arch {
    height: 430px;
  }
  .button-row {
    display: grid;
  }
  .footer {
    padding-top: 28px;
    padding-bottom: 100px;
  }

  .footer > .footer-about img {
    margin-bottom: -70px;
  }
}

/* Mural de clientes baseado na estrutura da página original */
.success-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
  min-height: 660px;
  padding: clamp(75px, 9vw, 130px) var(--page-gutter);
  color: #fff;
  background: #000;
}

.success-hero-copy > span,
.testimonial-heading > span,
.success-final-cta > span {
  color: #e8b138;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.success-hero h1 {
  margin: 18px 0 24px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.82;
}

.success-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.success-hero .button { margin-top: 20px; }
.success-hero-image { overflow: hidden; border: 2px solid #d1992c; border-radius: 260px 260px 12px 12px; }
.success-hero-image img { display: block; width: 100%; min-height: 500px; object-fit: cover; }

.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 var(--page-gutter) clamp(75px, 8vw, 115px);
  color: #fff;
  background: #000;
}

.success-stats article {
  display: flex;
  min-height: 250px;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 177, 56, 0.38);
  text-align: center;
}
.success-stats strong {
  display: block;
  margin-bottom: 12px;
  color: #e8b138;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.05;
}
.success-stats h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.success-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

@media (min-width: 901px) {
  .success-stats strong { white-space: nowrap; }
}

.dream-wall-section { padding: clamp(80px, 10vw, 140px) var(--page-gutter); background: #fff; }
.dream-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }

.dream-wall-section .section-head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #68636b;
  font-size: 15px;
  line-height: 1.65;
}
.dream-placeholder { display: grid; place-items: center; aspect-ratio: 1; color: rgba(232, 177, 56, 0.72); background: radial-gradient(circle, rgba(232, 177, 56, 0.18), transparent 35%), #090909; border: 2px solid #d1992c; font-family: var(--display); font-size: 28px; }

.dream-wall figure {
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  background: #000;
  border: 2px solid #d1992c;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.dream-wall figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.dream-wall figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.dream-wall figure:hover img {
  transform: scale(1.045);
}

.success-hero {
  align-items: start;
  padding-top: clamp(48px, 5vw, 72px);
}

@media (max-width: 650px) {
  .success-hero {
    padding-top: 40px;
  }
}

.testimonial-page-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 680px);
  align-items: center;
  gap: clamp(36px, 4vw, 70px);
  padding: clamp(85px, 10vw, 140px) var(--page-gutter);
  color: #fff;
  background: #000;
}

.testimonial-heading h2,
.success-final-cta h2 { margin: 18px 0; color: #fff; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: 1.05; }
.testimonial-heading p,.success-final-cta p { color: rgba(255,255,255,.7); line-height: 1.7; }
.testimonial-page-video { overflow: hidden; border: 2px solid #d1992c; border-radius: 220px 220px 10px 10px; background: #090909; }
.testimonial-page-video video { display: block; width: 100%; aspect-ratio: 9/16; object-fit: cover; }
.testimonial-page-video strong { display: block; padding: 20px; color: #fff; line-height: 1.5; text-align: center; }

.testimonial-page-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 680px;
  justify-self: center;
}

.testimonial-page-section .testimonial-page-videos .testimonial-page-video {
  display: flex;
  justify-self: stretch;
  flex-direction: column;
  width: 100%;
  max-width: none;
}

.testimonial-page-section .testimonial-page-videos .testimonial-page-video strong {
  flex: 1;
}

.success-final-cta { padding: clamp(85px, 10vw, 140px) var(--page-gutter); color: #fff; background: #000; text-align: center; border-top: 1px solid rgba(232,177,56,.35); }
.success-final-cta h2,.success-final-cta p { max-width: 900px; margin-right: auto; margin-left: auto; }
.success-final-cta .button { margin-top: 22px; }

@media (max-width: 900px) {
  .success-hero,.testimonial-page-section { grid-template-columns: 1fr; }
  .success-hero-image { width: min(100%,560px); margin: auto; }
  .dream-wall { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 650px) {
  .success-stats,.dream-wall { grid-template-columns: 1fr 1fr; }
  .success-stats article:last-child { grid-column: 1/-1; }
  .success-hero h1 { font-size: clamp(58px,19vw,88px); }

  .testimonial-page-section .testimonial-heading,
  .testimonial-page-section .testimonial-heading h2,
  .testimonial-page-section .testimonial-heading p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .testimonial-page-section .testimonial-heading > span {
    display: block;
    text-align: center;
  }

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

  .testimonial-page-section .testimonial-page-videos .testimonial-page-video:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 7px);
  }
}

@media (max-width: 1050px) {
  .testimonial-page-section {
    grid-template-columns: 1fr;
  }
}

/* Casa em contorno, como no botão do site oficial */
.header-cta::before {
  display: none !important;
}

.house-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid #150126;
  border-top: 0;
  border-radius: 1px;
}

.house-icon::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 1px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #150126;
  border-left: 2px solid #150126;
  transform: rotate(45deg);
}

.house-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 4px;
  height: 7px;
  border: 2px solid #150126;
  border-bottom: 0;
}

/* Calendário em contorno, como no site oficial */
.button.calendar-button::before {
  display: none !important;
}

.calendar-icon {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid #150126;
  border-radius: 3px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 3px;
  width: 2px;
  height: 6px;
  background: #150126;
  border-radius: 2px;
  box-shadow: 8px 0 0 #150126;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  left: 0;
  height: 2px;
  background: #150126;
}

/* Marcador de localização em contorno, como no site oficial */
.map-button::before {
  display: none !important;
}

.map-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 23px;
  margin-right: 10px;
}

.map-icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 15px;
  height: 15px;
  border: 2px solid #150126;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 4px;
  height: 4px;
  background: #150126;
  border-radius: 50%;
}

.home-cta {
  min-height: 56px;
  padding-right: 30px;
  padding-left: 30px;
}

.home-cta .house-icon {
  width: 19px;
  height: 16px;
  margin-right: 12px;
}

/* Nova identidade preta e dourada metálica */
:root {
  --purple: #000;
  --purple2: #090909;
  --gold-dark: #906820;
  --gold-mid: #d1992c;
  --gold-light: #f5d874;
  --gold-main: #e8b138;
  --gold-shadow: #b98220;
  --gold-solid: #b98520;
  --gold-gradient: var(--gold-solid);
  --gold: #e8b138;
  --gold2: #f5c94c;
  --line: rgba(232, 177, 56, 0.46);
}

.site-header,
.hero,
.dark-section,
.why,
.clients,
.location,
.final-cta,
.footer {
  background-color: #000;
}

.site-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: #d1992c;
}

.hero {
  background: radial-gradient(circle at 78% 28%, rgba(232, 177, 56, 0.17), transparent 28%), #000;
}

.hero::after {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.76) 100%);
}

.brand-symbol {
  background-image: url("assets/logo-g7-transparente.png");
  background-position: center 46%;
  background-size: 142px 142px;
  border-radius: 0;
}

.brand-name strong,
.brand-name small,
.hero h1,
.hero h2,
.section-head h2,
.section-head.light h2,
.story-card h2,
.final-cta h2,
.eyebrow,
.section-head > span,
.story-card > span,
.story-copy > span,
.office-card > span,
.step-grid b,
.footer h3 {
  color: #e8b138;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button.gold,
.button.dark,
.carousel-arrow {
  color: #000;
  background: var(--gold-gradient);
  border-color: #d1992c;
}

.button.outline {
  color: #f5c94c;
  border-color: #d1992c;
}

.arch,
.specialist-card,
.testimonial-video,
.google-map,
.story-card,
.office-card {
  border-color: #d1992c;
}

.office-card,
.client-cards article {
  background: #090909;
}

/* Fotos de clientes em destaque na página inicial */
.client-cards article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.client-cards article img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.client-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.88) 100%);
}

.client-cards article span {
  position: relative;
  z-index: 1;
  color: #f5c94c;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 700;
}

.client-cards article:hover img {
  transform: scale(1.04);
}

/* Mesmo acabamento das fotos do Mural de Clientes */
.clients .client-cards article {
  aspect-ratio: 1;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #000;
}

.clients .client-cards article img {
  object-fit: contain;
}

.clients .client-cards article:hover img {
  transform: none;
}

.clients .client-cards article::after {
  display: none;
}

/* Foto da seção institucional integrada ao fundo preto */
.why .image-arch {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #000;
}

.why .image-arch img {
  border: 0;
  border-radius: 0;
  object-position: center 35%;
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 48%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 78% at 50% 48%, #000 58%, rgba(0, 0, 0, 0.82) 72%, transparent 100%);
}

/* Imagem principal do Mural de Clientes integrada ao fundo preto */
.success-page .success-hero-image {
  overflow: visible;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 0;
  background: #000;
}

.success-page .success-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse 86% 84% at 50% 50%, #000 60%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 86% 84% at 50% 50%, #000 60%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
}

/* Tipografia ampliada em todo o rodapé */
.footer.footer h3 {
  font-size: 14px;
}

.footer.footer a,
.footer.footer p {
  font-size: 17px;
  line-height: 1.7;
}

.footer.footer .footer-bottom,
.footer.footer .footer-bottom a,
.footer.footer .footer-bottom span {
  font-size: 14px;
}

.footer {
  border-top-color: #d1992c;
}

.footer-about img {
  display: block;
  width: min(100%, 340px);
  margin: 0 auto 26px;
  border-radius: 0;
}

.carousel-dots button.active {
  background: var(--gold-gradient);
}

@media (max-width: 900px) {
  .hero::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.38) 100%), linear-gradient(0deg, #000 0%, transparent 45%);
  }
}

/* Página inicial: hero imersivo com a fotografia original preservada por inteiro. */
.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 68%, transparent 100%);
  border-bottom: 0;
}

.home-page .site-header.scrolled {
  background: rgba(12, 12, 12, 0.84);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);
  backdrop-filter: blur(18px) saturate(0.82);
}

.hero-home {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  height: 860px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-home__media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.hero-home__media::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: var(--hero-home-image);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(24px) brightness(0.62) saturate(0.86);
  opacity: 0.28;
  transform: scale(1.12);
  pointer-events: none;
}

.hero-home__media img {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 6%;
  display: block;
  width: auto;
  height: 106%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.96) contrast(1.02);
  opacity: 0.96;
  transform: translateY(-50%);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 22%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 22%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 14%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-home__overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #000 0%,
      rgba(0, 0, 0, 0.98) 14%,
      rgba(0, 0, 0, 0.88) 30%,
      rgba(0, 0, 0, 0.52) 47%,
      rgba(0, 0, 0, 0.2) 66%,
      rgba(0, 0, 0, 0.38) 88%,
      #000 100%
    ),
    linear-gradient(180deg,
      #000 0%,
      rgba(0, 0, 0, 0.45) 12%,
      rgba(0, 0, 0, 0.12) 42%,
      rgba(0, 0, 0, 0.36) 76%,
      #000 100%
    );
}

.hero-home__content {
  position: relative;
  z-index: 4;
  width: min(1420px, calc(100% - 80px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-home__text {
  max-width: 640px;
  padding-top: 80px;
  text-align: left;
}

.hero-home__eyebrow {
  margin: 0 0 32px;
  color: #d8b34a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.92);
}

.hero-home__title {
  margin: 0 0 38px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(60px, 5.25vw, 90px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.72);
}

.hero-home__title > span {
  display: block;
  white-space: nowrap;
}

.hero-home__description {
  max-width: 600px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.92);
}

.hero-home__button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 42px;
  color: #050505;
  background: var(--gold-solid);
  border: 1px solid rgba(245, 216, 116, 0.86);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(232, 177, 56, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-home__button:hover,
.hero-home__button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(232, 177, 56, 0.36);
}

.hero-home.reveal-section > * {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 820px;
    height: auto;
    align-items: flex-end;
  }

  .hero-home__media::before {
    filter: blur(24px) brightness(0.68) saturate(0.88);
    opacity: 0.38;
  }

  .hero-home__media img {
    top: 28%;
    right: -10%;
    width: 120%;
    height: 68%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, transparent 4%, #000 18%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, transparent 8%, #000 32%, #000 72%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, transparent 4%, #000 18%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, transparent 8%, #000 32%, #000 72%, transparent 100%);
    mask-composite: intersect;
  }

  .hero-home__overlay {
    background:
      linear-gradient(180deg,
        #000 0%,
        rgba(0, 0, 0, 0.18) 24%,
        rgba(0, 0, 0, 0.72) 62%,
        #000 100%
      ),
      linear-gradient(90deg,
        #000 0%,
        rgba(0, 0, 0, 0.18) 32%,
        rgba(0, 0, 0, 0.18) 68%,
        #000 100%
      );
  }

  .hero-home__content {
    width: calc(100% - 32px);
    min-height: 820px;
    align-items: flex-end;
    padding-bottom: 56px;
  }

  .hero-home__text {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
  }

  .hero-home__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.25em;
  }

  .hero-home__title {
    margin-bottom: 22px;
    font-size: clamp(34px, 10.5vw, 58px);
    letter-spacing: -0.035em;
  }

  .hero-home__description {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-home__button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 11px;
  }
}

@media (max-width: 650px) {
  .hero-home__media img {
    top: 8%;
    height: 82%;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, transparent 4%, #000 18%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
    mask-image:
      linear-gradient(to right, transparent 0%, transparent 4%, #000 18%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 18%, #000 74%, transparent 100%);
  }
}

@media (max-width: 420px) {
  .hero-home {
    min-height: 860px;
  }

  .hero-home__content {
    padding-bottom: 42px;
  }

  .hero-home__description {
    font-size: 14px;
  }
}

/* Mural de clientes: hero fotográfico imersivo, isolado das composições antigas. */
.success-page-body {
  overflow-x: hidden;
}

.success-page-body .site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.58) 68%, transparent 100%);
  border-bottom: 0;
}

.success-page-body .site-header.scrolled {
  background: rgba(12, 12, 12, 0.84);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);
  backdrop-filter: blur(18px) saturate(0.82);
}

.success-page-body .success-page {
  margin-top: 0;
}

.hero-mural {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  height: 860px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-mural__bg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-mural__bg::before,
.hero-mural__bg::after {
  content: "";
  position: absolute;
  background-image: url("assets/mural-hero-imersivo.png");
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-mural__bg::before {
  inset: -32px;
  background-position: center center;
  background-size: cover;
  filter: blur(24px) brightness(0.4) saturate(0.82);
  opacity: 0.58;
}

.hero-mural__bg::after {
  z-index: 1;
  top: 12%;
  right: 36px;
  width: calc(76vh * 1.7768);
  height: 76%;
  background-position: center center;
  background-size: 100% 100%;
  filter: saturate(0.96) contrast(1.04);
  opacity: 0.98;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 22%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 22%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-composite: intersect;
}

.hero-mural__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #000 0%,
      rgba(0, 0, 0, 0.98) 12%,
      rgba(0, 0, 0, 0.86) 28%,
      rgba(0, 0, 0, 0.52) 44%,
      rgba(0, 0, 0, 0.12) 66%,
      rgba(0, 0, 0, 0.22) 88%,
      #000 100%
    ),
    linear-gradient(180deg,
      #000 0%,
      rgba(0, 0, 0, 0.52) 10%,
      rgba(0, 0, 0, 0.1) 38%,
      rgba(0, 0, 0, 0.3) 74%,
      #000 100%
    ),
    radial-gradient(circle at 74% 44%, transparent 0%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-mural__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(1420px, calc(100% - 80px));
  min-height: 100svh;
  align-items: center;
  margin: 0 auto;
}

.hero-mural__text {
  width: min(46vw, 620px);
  text-align: left;
  transform: translateY(95px);
}

.hero-mural__eyebrow {
  margin: 0 0 28px;
  color: #d8b34a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}

.hero-mural__title {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(76px, 7vw, 128px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.85);
}

.hero-mural__line {
  width: min(310px, 64%);
  height: 2px;
  margin: 34px 0 38px;
  background: var(--gold-solid);
  box-shadow: 0 0 18px rgba(216, 179, 74, 0.45);
}

.hero-mural__button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 38px;
  color: #050505;
  background: var(--gold-solid);
  border: 1px solid rgba(245, 216, 116, 0.86);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(232, 177, 56, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-mural__button:hover,
.hero-mural__button:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(232, 177, 56, 0.36);
}

.hero-mural.reveal-section > * {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 1100px) {
  .hero-mural__bg::after {
    top: 9%;
    right: -40px;
    width: calc(82vh * 1.7768);
    height: 82%;
  }

  .hero-mural__text {
    width: min(56vw, 570px);
  }

  .hero-mural__title {
    font-size: clamp(68px, 9vw, 104px);
  }
}

@media (max-width: 900px) {
  .success-page-body .success-page {
    margin-top: 0;
  }

  .hero-mural {
    min-height: max(780px, 100svh);
    height: auto;
    align-items: flex-end;
  }

  .hero-mural__bg::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 62% center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-mural__overlay {
    background:
      linear-gradient(180deg,
        #000 0%,
        rgba(0, 0, 0, 0.25) 24%,
        rgba(0, 0, 0, 0.78) 62%,
        #000 100%
      ),
      linear-gradient(90deg,
        #000 0%,
        rgba(0, 0, 0, 0.24) 30%,
        rgba(0, 0, 0, 0.24) 70%,
        #000 100%
      );
  }

  .hero-mural__content {
    width: calc(100% - 32px);
    min-height: max(780px, 100svh);
    align-items: flex-end;
    padding-bottom: 56px;
  }

  .hero-mural__text {
    width: 100%;
    max-width: 100%;
    text-align: left;
    transform: none;
  }

  .hero-mural__eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.36em;
  }

  .hero-mural__title {
    font-size: clamp(58px, 17vw, 82px);
    letter-spacing: -0.03em;
  }

  .hero-mural__line {
    width: 220px;
    margin: 26px 0 30px;
  }

  .hero-mural__button {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .hero-mural__content {
    padding-bottom: 42px;
  }
}

/* Texto do banner inicial encostado ao cabeçalho para liberar os rostos da foto. */
@media (min-width: 901px) {
  .hero.hero {
    align-items: flex-start;
    padding-top: 12px;
  }

  .hero .hero-copy {
    top: 0;
  }
}

/* Alinhamento único do ícone de casa em todos os botões de ação. */
.button:has(> .house-icon) {
  gap: 12px;
}

.button > .house-icon,
body main .button > .house-icon,
.success-page .button > .house-icon,
.home-cta > .house-icon {
  position: relative;
  top: 0;
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 1;
  vertical-align: middle;
}

.button > .house-icon::before,
body main .button > .house-icon::before,
.success-page .button > .house-icon::before,
.home-cta > .house-icon::before {
  display: block;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Alinha visualmente a assinatura do rodapé com o topo das demais colunas. */
@media (min-width: 901px) {
  .footer > .footer-about {
    align-self: start;
    margin-top: -64px;
  }
}

/* Simulador compacto no desktop: formulário completo visível em uma tela a 100%. */
@media (min-width: 1241px) {
  .simulator-showcase {
    gap: clamp(24px, 2.5vw, 40px);
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .simulator-intro h1 {
    margin: 12px 0 18px;
    font-size: clamp(52px, 4.25vw, 72px);
    line-height: 0.92;
  }

  .simulator-intro-text {
    font-size: 15px;
    line-height: 1.55;
  }

  .simulator-benefit-list {
    margin-top: 22px;
  }

  .simulator-benefit-list article {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 7px 0;
  }

  .simulator-benefit-list article > .material-symbols-outlined {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .simulator-benefit-list article div {
    padding-bottom: 8px;
  }

  .simulator-benefit-list strong {
    font-size: 14px;
  }

  .simulator-benefit-list p {
    margin-top: 2px;
    font-size: 12px;
  }

  .simulator-form-card {
    max-width: 820px;
    padding: 24px 30px;
    border-radius: 20px;
  }

  .simulator-form-heading {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .simulator-form-heading > .material-symbols-outlined {
    margin-bottom: 4px;
    font-size: 34px;
  }

  .simulator-form-heading h2 {
    max-width: 480px;
    font-size: clamp(25px, 1.85vw, 31px);
    line-height: 1.03;
  }

  .simulator-form-grid {
    gap: 12px 20px;
  }

  .simulator-form-card label {
    gap: 5px;
    font-size: 12px;
  }

  .simulator-form-card input,
  .simulator-form-card select,
  .simulator-form-card textarea {
    min-height: 46px;
    padding-left: 46px;
    font-size: 13px;
  }

  .simulator-field > .material-symbols-outlined {
    left: 14px;
    font-size: 21px;
  }

  .simulator-textarea > .material-symbols-outlined {
    top: 14px;
  }

  .simulator-form-card textarea {
    min-height: 72px;
    padding-top: 12px;
  }

  .simulator-form-card .form-submit {
    min-height: 52px;
    margin-top: 16px;
    font-size: 12px;
  }

  .simulator-form-card .form-button-icon {
    font-size: 22px;
  }

  .simulator-form-card .form-note {
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    font-size: 11px;
  }

  .simulator-form-card .form-note .material-symbols-outlined {
    font-size: 20px;
  }
}

/* Mural de clientes: fotografia integral ao fundo, conteúdo central e fusão com o preto. */
.success-page .success-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(820px, 112svh, 1080px);
  padding: clamp(28px, 3.5vw, 50px) var(--page-gutter) clamp(190px, 22vw, 320px);
  place-items: start center;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.success-page .success-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.success-page .success-hero-copy > span {
  font-size: 14px;
}

.success-page .success-hero h1 {
  margin: 12px auto 18px;
  font-size: clamp(68px, 7.4vw, 116px);
  line-height: 0.84;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.7);
}

.success-page .success-hero p {
  max-width: 760px;
  margin: 0 auto 10px;
  font-size: 16px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.92);
}

.success-page .success-hero .button {
  margin-top: 16px;
}

.success-page .success-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.success-page .success-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.05) brightness(0.72);
  transform: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
  mask-composite: intersect;
}

.success-page .success-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.22) 14%, rgba(0, 0, 0, 0.12) 86%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.12) 52%, #000 100%);
}

@media (max-width: 900px) {
  .success-page .success-hero {
    min-height: 920px;
    padding: 34px var(--page-gutter) 250px;
  }

  .success-page .success-hero-copy {
    width: 100%;
  }

  .success-page .success-hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
  }

  .success-page .success-hero-image img {
    object-position: center top;
  }

  .success-page .success-hero::after {
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.28) 15%, rgba(0, 0, 0, 0.2) 85%, #000 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18) 48%, #000 100%);
  }
}

@media (max-width: 650px) {
  .success-page .success-hero {
    min-height: 830px;
    padding-top: 26px;
    padding-bottom: 220px;
  }

  .success-page .success-hero-copy > span {
    font-size: 11px;
  }

  .success-page .success-hero h1 {
    margin-top: 10px;
    font-size: clamp(54px, 16vw, 74px);
  }

  .success-page .success-hero p {
    font-size: 14px;
  }
}

/* Composição final do banner inicial: texto central e fotografia fundida ao preto */
.hero.hero {
  min-height: clamp(1180px, 148svh, 1360px);
  align-items: center;
  padding-top: clamp(76px, 8vw, 118px);
  padding-bottom: clamp(190px, 18vw, 270px);
}

.hero .hero-copy {
  width: min(78%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  top: -120px;
}

.hero .hero-copy h1,
.hero .hero-copy h2,
.hero .hero-copy p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.hero .hero-copy .button {
  margin-right: auto;
  margin-left: auto;
}

.hero .hero-visual {
  z-index: 0;
  inset: 0 clamp(30px, 4.5vw, 88px);
  max-width: none;
  margin: 0;
  opacity: 1;
}

.hero .hero-visual .arch {
  overflow: hidden;
  background: #000;
}

.hero .hero-visual .arch::before {
  inset: -4%;
  opacity: 0.3;
  filter: blur(34px) saturate(0.7) brightness(0.46);
}

.hero .hero-visual .arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: none;
  filter: saturate(0.84) contrast(1.04) brightness(0.76);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.48) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 86%, rgba(0, 0, 0, 0.72) 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.48) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 86%, rgba(0, 0, 0, 0.72) 94%, transparent 100%);
  mask-composite: intersect;
}

.hero.hero::after {
  z-index: 2;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 12%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.28) 65%, rgba(0, 0, 0, 0.68) 88%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.12) 12%, rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.72) 90%, #000 100%);
}

@media (max-width: 900px) {
  .hero.hero {
    min-height: 1020px;
    padding-top: 68px;
    padding-bottom: 160px;
  }

  .hero .hero-copy {
    width: min(92%, 760px);
    top: -68px;
  }

  .hero .hero-visual {
    right: 18px;
    left: 18px;
  }
}

@media (max-width: 650px) {
  .hero.hero {
    min-height: 920px;
    padding-top: 52px;
    padding-bottom: 130px;
  }

  .hero .hero-copy {
    width: 100%;
    top: -18px;
  }

  .hero .hero-visual {
    right: 8px;
    left: 8px;
  }
}

/* Hero imersivo: foto inteira centralizada, texto sobreposto e fusão natural com o preto */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 84px);
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(64px, 7vw, 104px);
  background: #000;
}

.hero .hero-copy {
  position: relative;
  z-index: 3;
  width: min(55%, 850px);
  max-width: 850px;
}

.hero .hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero .hero-visual .arch {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
}

.hero .hero-visual .arch::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -7%;
  background: url("assets/hero-inicio-clientes.png") center 42% / cover no-repeat;
  opacity: 0.4;
  filter: blur(30px) saturate(0.72) brightness(0.52);
  transform: scale(1.08);
}

.hero .hero-visual .arch img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.84) contrast(1.04) brightness(0.74);
  transform: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 10%, #000 25%, #000 75%, rgba(0, 0, 0, 0.5) 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 10%, #000 25%, #000 75%, rgba(0, 0, 0, 0.5) 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 27%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.06) 16%, rgba(0, 0, 0, 0.08) 72%, #000 100%);
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 74px);
    padding-top: 54px;
  }

  .hero .hero-copy {
    width: min(76%, 720px);
  }

  .hero .hero-visual .arch::before {
    opacity: 0.32;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.32) 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.08) 52%, #000 100%);
  }
}

@media (max-width: 650px) {
  .hero {
    min-height: calc(100svh - 70px);
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero .hero-copy {
    width: 100%;
  }

  .hero .hero-visual .arch img {
    object-position: center 42%;
    opacity: 0.72;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 58%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.2) 44%, #000 100%);
  }
}

/* Padrão único para todos os botões principais de ação */
main a.button,
.success-page a.button {
  width: min(100%, 380px);
  min-height: 68px;
  padding: 0 34px;
  gap: 12px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-align: center;
}

main .button .house-icon,
.success-page .button .house-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 18px;
  margin-right: 0;
}

main .button .house-icon::before,
.success-page .button .house-icon::before {
  top: -8px;
  left: 2px;
  width: 13px;
  height: 13px;
}

main .button .house-icon::after,
.success-page .button .house-icon::after {
  right: 5px;
  width: 5px;
  height: 8px;
}

main .button .form-button-icon,
.success-page .button .form-button-icon {
  margin-right: 0;
  font-size: 26px;
}

.why .whatsapp-button {
  width: min(100%, 380px);
  min-height: 68px;
  padding: 0 34px;
  font-size: 13px;
}

.why .whatsapp-button::before {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-right: 0;
}

.story-card .video-button {
  width: min(100%, 380px);
  min-height: 68px;
  padding: 0 34px 0 68px;
  font-size: 13px;
}

.story-card .video-button::before {
  left: 30px;
  width: 21px;
  height: 15px;
}

.story-card .video-button::after {
  left: 52px;
}

.office-card .button-row {
  align-items: stretch;
}

.office-card .button-row .button {
  width: min(100%, 380px);
  min-height: 68px;
  font-size: 13px;
}

.office-card .calendar-icon {
  width: 22px;
  height: 21px;
  margin-right: 0;
}

.office-card .map-icon {
  width: 22px;
  height: 25px;
  margin-right: 0;
}

.simulator-form-card .form-submit {
  min-height: 68px;
  font-size: 13px;
}

@media (max-width: 650px) {
  main a.button,
  .success-page a.button,
  .why .whatsapp-button,
  .story-card .video-button,
  .office-card .button-row .button {
    width: 100%;
    min-height: 62px;
    padding-right: 22px;
    padding-left: 22px;
    font-size: 12px;
  }

  .story-card .video-button {
    padding-left: 58px;
  }

  .story-card .video-button::before {
    left: 23px;
  }

  .story-card .video-button::after {
    left: 45px;
  }
}

/* Abertura da página inicial com maior presença visual */
.hero .hero-copy {
  max-width: 850px;
}

.hero .eyebrow {
  font-size: 16px;
}

.hero h1 {
  margin: 22px 0;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.98;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.12;
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.72;
}

.hero .button {
  min-height: 60px;
  margin-top: 26px;
  padding: 0 32px;
  font-size: 12px;
}

@media (max-width: 650px) {
  .hero .eyebrow {
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero .button {
    min-height: 56px;
    padding: 0 24px;
  }
}

/* Hero do Mural de Clientes com fotografia ampla integrada ao preto */
.success-page .success-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  min-height: calc(100vh - 84px);
  padding: clamp(58px, 6vw, 90px) var(--page-gutter);
}

.success-page .success-hero-copy {
  position: relative;
  z-index: 3;
  width: min(52%, 760px);
}

.success-page .success-hero-copy > span {
  font-size: 16px;
  letter-spacing: 0.2em;
}

.success-page .success-hero h1 {
  margin: 22px 0 30px;
  font-size: clamp(72px, 8.8vw, 136px);
}

.success-page .success-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.72;
}

.success-page .success-hero .button {
  min-height: 62px;
  margin-top: 26px;
  padding: 0 30px;
  font-size: 12px;
}

.success-page .success-hero-image {
  position: absolute;
  z-index: 0;
  inset: -5% -4% -8% 28%;
  width: auto;
  height: auto;
  margin: 0;
  aspect-ratio: auto;
  background: transparent;
}

.success-page .success-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.88) contrast(1.06) brightness(0.76);
  transform: scale(0.94);
  -webkit-mask-image: radial-gradient(ellipse 98% 88% at 52% 48%, #000 66%, rgba(0, 0, 0, 0.82) 80%, transparent 100%);
  mask-image: radial-gradient(ellipse 98% 88% at 52% 48%, #000 66%, rgba(0, 0, 0, 0.82) 80%, transparent 100%);
}

.success-page .success-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.99) 30%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(0deg, #000 0%, transparent 30%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .success-page .success-hero {
    min-height: 720px;
  }

  .success-page .success-hero-copy {
    width: 100%;
  }

  .success-page .success-hero-image {
    inset: 16% -34% -5% -12%;
    opacity: 0.72;
  }

  .success-page .success-hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.68) 70%, rgba(0, 0, 0, 0.45) 100%),
      linear-gradient(0deg, #000 0%, transparent 48%, #000 100%);
  }
}

@media (max-width: 650px) {
  .success-page .success-hero {
    min-height: 690px;
    padding-top: 38px;
  }

  .success-page .success-hero-copy > span {
    font-size: 13px;
  }

  .success-page .success-hero h1 {
    font-size: clamp(58px, 17vw, 78px);
  }

  .success-page .success-hero p {
    font-size: 16px;
  }

  .success-page .success-hero-image {
    inset: 24% -55% -3% -30%;
  }
}

/* Foto institucional ampla e imersiva, integrada ao fundo preto */
.why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: clamp(760px, 62vw, 940px);
  align-items: center;
}

.why > div:first-child {
  position: relative;
  z-index: 3;
  width: min(48%, 650px);
}

.why .image-arch {
  position: absolute;
  z-index: 0;
  inset: -5% -5% -16% 18%;
  width: auto;
  height: auto;
  background: transparent;
}

.why .image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.88) contrast(1.05) brightness(0.78);
  transform: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 8%, #000 18%, #000 84%, rgba(0, 0, 0, 0.48) 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 84%, rgba(0, 0, 0, 0.68) 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 8%, #000 18%, #000 84%, rgba(0, 0, 0, 0.48) 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 84%, rgba(0, 0, 0, 0.68) 93%, transparent 100%);
  mask-composite: intersect;
}

.why::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.99) 29%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.1) 73%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(180deg, #000 0%, transparent 14%, transparent 73%, rgba(0, 0, 0, 0.52) 88%, #000 100%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .why {
    display: flex;
    min-height: 820px;
  }

  .why > div:first-child {
    width: 100%;
  }

  .why .image-arch {
    position: absolute;
    z-index: 0;
    inset: 7% -38% -15% -18%;
    width: auto;
    height: auto;
    margin: 0;
  }

  .why::after {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.4) 100%),
      linear-gradient(0deg, #000 0%, transparent 48%, #000 100%);
  }
}

@media (max-width: 650px) {
  .why {
    min-height: 760px;
  }

  .why > div:first-child,
  .why .section-head,
  .why > div:first-child > p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .why .image-arch {
    inset: 15% -68% -12% -36%;
  }
}

/* Cabeçalho integrado ao conteúdo, sem linha de separação */
.site-header.site-header,
.site-header.site-header.scrolled {
  border-bottom: 0;
}

/* Nome da marca em branco; símbolo G7 permanece dourado */
.site-header .brand-name strong,
.site-header .brand-name small {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  text-shadow: none;
}

.site-header .brand {
  padding: 6px 10px 6px 0;
  cursor: pointer;
}

.site-header .main-nav a,
.site-header .main-nav a:visited {
  color: #fff;
  opacity: 1;
}

.site-header .main-nav a:hover,
.site-header .main-nav a:focus-visible {
  color: #f5d874;
}

.button .form-button-icon {
  flex: 0 0 auto;
  font-size: 23px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

/* Primeira chamada mais compacta e próxima ao cabeçalho */
.hero.hero {
  padding-top: 28px;
}

.hero .eyebrow {
  max-width: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: normal;
  }
}

@media (max-width: 650px) {
  .hero.hero {
    padding-top: 26px;
  }
}

/* Detalhes de navegação nas colunas do rodapé */
.footer h3 {
  position: relative;
  width: fit-content;
  margin-bottom: 24px;
}

.footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--gold-gradient);
  border-radius: 999px;
}

.footer > div:not(.footer-about):not(.footer-contact):not(.footer-bottom) > a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer > div:not(.footer-about):not(.footer-contact):not(.footer-bottom) > a::before {
  content: "›";
  flex: 0 0 auto;
  color: #e8b138;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer > div:not(.footer-about):not(.footer-contact):not(.footer-bottom) > a:hover::before {
  color: #f5d874;
  transform: translateX(3px);
}

/* Ícones das informações de contato no rodapé */
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p .material-symbols-outlined {
  flex: 0 0 18px;
  width: 18px;
  overflow: visible;
  color: #e8b138;
  font-size: 18px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
}

/* Linhas divisórias entre as colunas principais do rodapé */
.footer > div:not(.footer-bottom) + div:not(.footer-bottom) {
  padding-left: clamp(24px, 2.6vw, 42px);
  border-left: 1px solid rgba(232, 177, 56, 0.34);
}

@media (max-width: 900px) {
  .footer > div:not(.footer-bottom) + div:not(.footer-bottom) {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid rgba(232, 177, 56, 0.28);
    border-left: 0;
  }
}

/* Texto do cabeçalho com o mesmo metal dourado da logo */
.brand-name strong,
.brand-name small {
  color: var(--gold-solid);
  background: var(--gold-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 7px rgba(245, 216, 116, 0.12);
}

/* Páginas legais */
.legal-page { min-height: 100vh; background: #fff; }
.legal-hero { padding: clamp(85px,10vw,145px) var(--page-gutter) clamp(55px,7vw,90px); color: #fff; background: #000; text-align: center; }
.legal-hero > span { color: #e8b138; font-size: 14px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.legal-hero h1 { margin: 18px 0; color: #fff; font-family: var(--display); font-size: clamp(48px,6vw,86px); }
.legal-hero p { color: rgba(255,255,255,.66); }
.legal-content { max-width: 940px; margin: 0 auto; padding: clamp(65px,8vw,115px) clamp(24px,5vw,70px); color: #3e3940; }
.legal-content h2 { margin: 42px 0 12px; color: #b98220; font-family: var(--display); font-size: clamp(25px,3vw,36px); }
.legal-content p { font-size: 16px; line-height: 1.8; }
.legal-content a { color: #906820; font-weight: 700; text-decoration: underline; }
.legal-content aside { margin-top: 55px; padding: 24px; color: #5c4a20; background: #fff8e7; border-left: 4px solid #d1992c; line-height: 1.6; }

/* Tipografia do rodapé com leitura ampliada */
.footer h3 {
  font-size: 12px;
}

.footer a,
.footer p {
  font-size: 15px;
  line-height: 1.65;
}

.footer-bottom,
.footer-bottom a,
.footer-bottom span {
  font-size: 12px;
}

/* Subtítulos padronizados em todas as seções */
.eyebrow,
.section-head > span,
.story-card > span,
.story-copy > span,
.office-card > span,
.inner-hero > span,
.simulator-benefits > span,
.wall-cta > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  .eyebrow,
  .section-head > span,
  .story-card > span,
  .story-copy > span,
  .office-card > span,
  .inner-hero > span,
  .simulator-benefits > span,
  .wall-cta > span {
    font-size: 12px;
  }
}

/* Páginas internas: simulador e mural de clientes */
.inner-page {
  min-height: 100vh;
  background: #000;
}

.inner-hero {
  padding: clamp(90px, 10vw, 150px) var(--page-gutter) clamp(65px, 8vw, 110px);
  color: #fff;
  background: radial-gradient(circle at 75% 30%, rgba(232, 177, 56, 0.16), transparent 28%), #000;
  text-align: center;
}

.inner-hero > span,
.simulator-benefits > span,
.wall-cta > span {
  color: #e8b138;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 980px;
  margin: 18px auto;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
}

.inner-hero p {
  max-width: 700px;
  margin: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.simulator-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: start;
  padding: clamp(75px, 9vw, 130px) var(--page-gutter);
  background: #fff;
}

.simulator-benefits h2,
.wall-cta h2 {
  margin: 18px 0;
  color: #e8b138;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
}

.simulator-benefits p,
.simulator-benefits li {
  color: #5f5962;
  line-height: 1.7;
}

.simulator-benefits ul {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.simulator-benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: #d1992c;
  font-weight: 900;
}

.simulator-form {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid #d1992c;
  background: #f8f5ef;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-submit {
  width: 100%;
}

/* Simulador — composição premium em preto e dourado */
.simulator-redesign {
  overflow: hidden;
  background: #fff;
  color: #111;
}

.simulator-showcase {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(26px, 3vw, 48px);
  align-items: start;
  width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px) var(--page-gutter) clamp(64px, 7vw, 108px);
}

.simulator-intro {
  min-width: 0;
  justify-self: start;
}

.simulator-form-card {
  width: 100%;
  justify-self: stretch;
}

.simulator-intro-logo {
  display: block;
  width: clamp(130px, 12vw, 185px);
  height: 96px;
  margin: 0 0 clamp(36px, 5vw, 66px);
  object-fit: contain;
  object-position: left center;
}

.simulator-kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  color: #b98220;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.simulator-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-gradient);
}

.simulator-intro h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px 0 28px;
  color: #08090a;
  font-family: var(--display);
  font-size: clamp(58px, 5.2vw, 86px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.simulator-intro h1 strong,
.simulator-intro h1 em {
  color: var(--gold-solid);
  background: var(--gold-solid);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 600;
}

.simulator-intro-text {
  max-width: 570px;
  margin: 0;
  color: #625e65;
  font-size: 17px;
  line-height: 1.75;
}

.simulator-benefit-list {
  display: grid;
  gap: 0;
  max-width: 555px;
  margin-top: 38px;
}

.simulator-benefit-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
  padding: 13px 0;
}

.simulator-benefit-list article > .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(209, 153, 44, 0.52);
  border-radius: 50%;
  color: #e8b138;
  background: radial-gradient(circle at 38% 28%, #242526, #08090a 70%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  font-size: 31px;
}

.simulator-benefit-list article div {
  padding: 0 0 14px;
  border-bottom: 1px solid #dedbd6;
}

.simulator-benefit-list article:last-child div {
  border-bottom: 0;
}

.simulator-benefit-list strong {
  display: block;
  color: #151515;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.simulator-benefit-list p {
  margin: 5px 0 0;
  color: #777279;
  font-size: 14px;
  line-height: 1.45;
}

.simulator-form-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  padding: clamp(34px, 4vw, 58px);
  border: 2px solid #d1992c;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 94% 2%, rgba(245, 216, 116, 0.17), transparent 21%),
    radial-gradient(circle at 8% 72%, rgba(209, 153, 44, 0.07), transparent 28%),
    linear-gradient(145deg, #050607 0%, #121415 52%, #08090a 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28), 0 0 30px rgba(232, 177, 56, 0.08);
}

.simulator-form-card::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 104px;
  height: 104px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 238, 168, 0.85) 0 2%, rgba(245, 201, 76, 0.3) 8%, transparent 58%);
}

.simulator-form-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 30px;
  text-align: center;
}

.simulator-form-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-solid);
}

.simulator-form-heading > .material-symbols-outlined {
  margin-bottom: 8px;
  color: #e8b138;
  font-size: 50px;
}

.simulator-form-heading h2 {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(26px, 2.3vw, 38px);
  font-weight: 600;
  line-height: 1.1;
}

.simulator-form-heading h2 strong {
  display: block;
  color: var(--gold-solid);
  background: var(--gold-solid);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.simulator-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.simulator-form-card label {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.simulator-field {
  position: relative;
  display: block;
  min-width: 0;
}

.simulator-field > .material-symbols-outlined {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 1;
  color: #e8b138;
  font-size: 25px;
  transform: translateY(-50%);
  pointer-events: none;
}

.simulator-form-card input,
.simulator-form-card select,
.simulator-form-card textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  padding: 0 18px 0 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  outline: 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.075));
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.simulator-form-card input::placeholder,
.simulator-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.simulator-form-card input:focus,
.simulator-form-card select:focus,
.simulator-form-card textarea:focus {
  border-color: #f5c94c;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 201, 76, 0.12);
}

.simulator-form-card select {
  cursor: pointer;
}

.simulator-form-card select option,
.simulator-form-card select option:checked,
.simulator-form-card select option:hover,
.simulator-form-card select option:focus {
  color: #000;
  background: #fff;
}

.simulator-message-field {
  grid-column: 1 / -1;
}

.simulator-textarea > .material-symbols-outlined {
  top: 20px;
  transform: none;
}

.simulator-form-card textarea {
  min-height: 120px;
  padding-top: 17px;
  resize: vertical;
  line-height: 1.5;
}

.simulator-form-card .form-submit {
  min-height: 70px;
  margin-top: 28px;
  border: 1px solid #f5d874;
  border-radius: 10px;
  color: #090909;
  background: var(--gold-solid);
  box-shadow: 0 12px 28px rgba(232, 177, 56, 0.2), inset 0 1px rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.simulator-form-card .form-button-icon {
  margin-right: 11px;
  font-size: 27px;
}

.simulator-form-card .form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(209, 153, 44, 0.3);
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.simulator-form-card .form-note .material-symbols-outlined {
  flex: 0 0 auto;
  color: #e8b138;
  font-size: 25px;
}

@media (max-width: 1240px) {
  .simulator-showcase {
    grid-template-columns: 1fr;
    width: min(100%, 850px);
  }

  .simulator-intro-logo {
    margin-bottom: 30px;
  }

  .simulator-intro-text,
  .simulator-benefit-list {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .simulator-showcase {
    padding-top: 22px;
  }

  .simulator-intro-logo {
    width: 126px;
    height: 78px;
  }

  .simulator-kicker {
    font-size: 13px;
  }

  .simulator-intro h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .simulator-benefit-list article {
    grid-template-columns: 54px 1fr;
    gap: 15px;
  }

  .simulator-benefit-list article > .material-symbols-outlined {
    width: 54px;
    height: 54px;
    font-size: 27px;
  }

  .simulator-form-card {
    padding: 27px 20px;
    border-radius: 18px;
  }

  .simulator-form-grid {
    grid-template-columns: 1fr;
  }

  .simulator-message-field {
    grid-column: auto;
  }

  .simulator-form-card .form-submit {
    padding: 12px 14px;
    font-size: 11px;
  }

  .simulator-form-card .form-note {
    align-items: flex-start;
  }
}

.clients-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: clamp(70px, 9vw, 125px) var(--page-gutter);
  background: #fff;
}

.clients-wall article {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 2px solid #d1992c;
  border-radius: 6px;
  background: #090909;
}

.clients-wall img,
.clients-wall video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 420px;
  color: #e8b138;
  background: radial-gradient(circle, rgba(232, 177, 56, 0.2), transparent 34%), #090909;
  font-size: 72px;
}

.clients-wall article > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 20px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  font-family: var(--display);
  font-size: 24px;
}

.wall-video {
  grid-column: span 2;
}

.wall-cta {
  padding: clamp(80px, 10vw, 140px) var(--page-gutter);
  color: #fff;
  background: #000;
  text-align: center;
}

@media (max-width: 950px) {
  .simulator-content,
  .clients-wall {
    grid-template-columns: 1fr 1fr;
  }

  .simulator-benefits {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .simulator-content,
  .clients-wall,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .wall-video {
    grid-column: auto;
  }

  .clients-wall article {
    min-height: 360px;
  }
}

/* Hierarquia de títulos: branco como principal, dourado apenas em destaques */
.hero h1,
.why .section-head h2,
.clients .section-head h2,
.location .section-head h2,
.final-cta h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}

.steps .section-head h2,
.team .section-head h2,
.partners .section-head h2,
.story-card h2 {
  color: #e8b138;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ícone profissional de casa nos botões */
.house-icon,
.home-cta .house-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 0;
  border-radius: 0;
}

.house-icon::before {
  content: "home";
  position: static;
  width: auto;
  height: auto;
  color: #000;
  font-family: "Material Symbols Outlined";
  font-size: 23px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  border: 0;
  transform: none;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
}

.house-icon::after {
  display: none;
}

.hero h2,
.office-card h3,
.eyebrow,
.section-head > span,
.story-copy > span,
.office-card > span,
.step-grid b,
.footer h3 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fundo oficial preto com a nova identidade dourada */
:root {
  --purple: #000;
  --purple2: #090909;
}

.site-header,
.hero,
.dark-section,
.why,
.clients,
.location,
.final-cta,
.footer {
  background-color: #000;
}

.site-header {
  background: rgba(0, 0, 0, 0.97);
}

.hero {
  background: radial-gradient(circle at 78% 28%, rgba(232, 177, 56, 0.17), transparent 28%), #000;
}

.hero::after {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.76) 100%);
}

.office-card,
.client-cards article {
  background: #090909;
}

@media (max-width: 900px) {
  .hero::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.38) 100%), linear-gradient(0deg, #000 0%, transparent 45%);
  }
}

/* Regra final: todos os CTAs compartilham exatamente a mesma escala */
body main a.button {
  width: min(100%, 380px) !important;
  min-height: 68px !important;
  padding: 0 34px !important;
  gap: 12px;
  font-size: 13px !important;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-align: center;
}

body main .story-card a.video-button {
  padding-left: 68px !important;
}

body main .button .house-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 18px;
  margin-right: 0;
}

body main .button .form-button-icon {
  margin-right: 0;
  font-size: 26px;
}

body main .why .whatsapp-button::before {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin-right: 0;
}

body main .office-card .calendar-icon {
  width: 22px;
  height: 21px;
  margin-right: 0;
}

body main .office-card .map-icon {
  width: 22px;
  height: 25px;
  margin-right: 0;
}

body main .simulator-form-card .form-submit {
  min-height: 68px;
  font-size: 13px;
}

@media (max-width: 650px) {
  body main a.button {
    width: 100% !important;
    min-height: 62px !important;
    padding-right: 22px !important;
    padding-left: 22px !important;
    font-size: 12px !important;
  }

  body main .story-card a.video-button {
    padding-left: 58px !important;
  }
}

/* Iluminação preta e dourada das chamadas finais */
.final-cta.final-cta,
.success-final-cta.success-final-cta {
  border-top: 0;
  background-color: #000;
  background-image:
    radial-gradient(ellipse at 68% 12%, rgba(245, 201, 76, 0.13) 0%, rgba(209, 153, 44, 0.06) 24%, transparent 52%),
    radial-gradient(ellipse at 38% 100%, rgba(144, 104, 32, 0.08) 0%, transparent 48%),
    linear-gradient(112deg, #000 0%, #050402 38%, #130e03 68%, #020202 100%);
}

/* Depoimentos 30% menores nas páginas principal e mural. */
.story-layout .testimonial-video,
.testimonial-page-section .testimonial-page-video {
  justify-self: center;
  width: 70%;
  max-width: 340px;
}

/* Mantém o acabamento metálico do CTA do simulador acima das regras globais de botões. */
.simulator-redesign .simulator-form-card .form-submit.button.gold {
  border-color: #f5d874;
  color: #090909;
  background: var(--gold-solid);
}

/* Regra final: cabeçalho totalmente integrado ao conteúdo */
.site-header,
.site-header.scrolled {
  border-bottom: 0;
}

/* Redesign isolado da seção Como Você Vai Conquistar Seu Imóvel */
.steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  color: #181818;
  background: radial-gradient(circle at 85% 10%, rgba(232, 177, 56, 0.08), transparent 35%), linear-gradient(180deg, #fff 0%, #fdfcf9 100%);
}

.steps::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(680px, 72vw);
  height: 3px;
  background: linear-gradient(90deg, transparent, #d5a52d 18%, #f4d56c 50%, #d5a52d 82%, transparent);
  box-shadow: 0 0 28px rgba(213, 165, 45, 0.58);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps.reveal-visible::before {
  transform: translateX(-50%) scaleX(1);
}

.steps > * {
  position: relative;
  z-index: 2;
}

.steps .section-head {
  max-width: 900px;
  text-align: left;
}

.steps .section-head > span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #b98220;
  background: none;
  -webkit-text-fill-color: #b98220;
  font-size: 15px;
  letter-spacing: 0.3em;
}

.steps .section-head > span::after {
  content: "";
  width: 85px;
  height: 1px;
  background: #c79228;
}

.steps .section-head h2 {
  margin: 22px 0 24px;
  font-family: var(--display);
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.steps .section-head h2 span,
.steps .section-head h2 strong {
  display: block;
}

.steps .section-head h2 span {
  color: #181818;
  background: none;
  -webkit-text-fill-color: #181818;
  font-weight: 700;
}

.steps .section-head h2 strong {
  color: var(--gold-solid);
  background: var(--gold-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps .section-head p {
  max-width: 720px;
  color: #3d3d3d;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
}

.steps .section-head mark {
  color: #b98220;
  background: transparent;
}

.steps .step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 74px auto 0;
  border: 0;
}

.steps .step-grid::before {
  content: "";
  position: absolute;
  top: 0;
  right: 3%;
  left: 3%;
  height: 1px;
  background: rgba(185, 130, 32, 0.65);
}

.steps .step-grid article,
.steps .step-grid article + article {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  padding: 70px 20px 25px;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(185, 130, 32, 0.15);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.07), 0 3px 10px rgba(0,0,0,.04);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.steps .step-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.10), 0 5px 14px rgba(185,130,32,.12);
}

.steps .step-grid b {
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  color: #a96f12;
  -webkit-text-fill-color: #a96f12;
  background: #fff;
  border: 1px solid #d3a339;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(185,130,32,.14);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  transform: translateX(-50%);
}

.steps .step-grid b::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 7px;
  height: 7px;
  background: #f0cb62;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(240,203,98,.8);
}

.steps .step-icon {
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin: 0 0 14px;
  color: #b98220;
  font-size: 58px;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}

.steps .step-grid h3 {
  position: relative;
  display: flex;
  width: 100%;
  height: 92px;
  min-height: 92px;
  margin: 0;
  padding: 0 0 36px;
  flex: 0 0 92px;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  font-family: var(--display);
  font-size: clamp(20px, 1.4vw, 26px);
  font-weight: 700;
  line-height: 1.08;
}

.steps .step-grid h3::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 46px;
  height: 2px;
  margin: 0;
  background: #c79228;
  transform: translateX(-50%);
}

.steps .step-grid p {
  max-width: 215px;
  margin: 0 auto;
  color: #3f3f3f;
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.55;
}

.steps > .home-cta {
  display: flex;
  width: max-content;
  min-height: 68px;
  margin: 34px auto 0;
  padding: 0 50px;
  color: #080808;
  background: var(--gold-solid);
  border: 1px solid rgba(240,203,98,.75);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(185,130,32,.28), inset 0 1px 0 rgba(255,255,255,.55);
  font-weight: 800;
}

.steps.steps {
  padding-bottom: 34px;
}

.steps > .home-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 1200px) {
  .steps .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 68px 22px; }
  .steps .step-grid::before { display: none; }
}

@media (max-width: 650px) {
  .steps .section-head > span { gap: 12px; font-size: 12px; }
  .steps .section-head > span::after { width: 50px; }
  .steps .section-head h2 { font-size: clamp(42px, 13vw, 58px); letter-spacing: -.02em; }
  .steps .section-head p { font-size: 17px; }
  .steps .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 50px 12px; margin-top: 58px; }
  .steps .step-grid article,.steps .step-grid article + article { min-height: 0; padding: 52px 10px 20px; }
  .steps .step-grid article:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc((100% - 12px) / 2); justify-self: center; }
  .steps .step-grid b { top: -23px; width: 46px; height: 46px; font-size: 20px; }
  .steps .step-icon { flex-basis: 42px; width: 54px; height: 42px; margin-bottom: 14px; font-size: 42px; }
  .steps .step-grid h3 { height: 72px; min-height: 72px; padding-bottom: 30px; flex-basis: 72px; font-size: clamp(16px, 4.4vw, 18px); line-height: 1.12; }
  .steps .step-grid h3::after { bottom: 12px; width: 34px; }
  .steps .step-grid p { max-width: 100%; font-size: 12px; line-height: 1.45; }
  .steps > .home-cta { width: 100%; min-height: 62px; margin-top: 30px; padding: 0 20px; }
  .steps.steps { padding-bottom: 30px; }
}

/* Hierarquia final dos títulos */
.hero h1,
.why .section-head h2,
.clients .section-head h2,
.location .section-head h2,
.final-cta h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}

.steps .section-head h2,
.team .section-head h2,
.partners .section-head h2,
.story-card h2 {
  color: #e8b138;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paleta oficial Seven Gold */
:root {
  --purple: #150126;
  --purple2: #1d092b;
  --gold: #d8b34a;
  --gold2: #d8b34a;
  --cream: #150126;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(216, 179, 74, 0.42);
}

body,
.hero,
.dark-section,
.team,
.story,
.partners {
  color: #fff;
  background: #150126;
}

.site-header {
  background: rgba(21, 1, 38, 0.97);
  border-bottom-color: #d8b34a;
}

.hero {
  background: radial-gradient(circle at 78% 28%, rgba(216, 179, 74, 0.18), transparent 28%), #150126;
}

.hero h1,
.hero h2,
.section-head h2,
.section-head.light h2,
.story-card h2,
.final-cta h2,
.step-grid h3,
.office-card h3,
.eyebrow,
.section-head > span,
.story-card > span,
.office-card > span,
.step-grid b,
.footer h3 {
  color: #d8b34a;
}

.hero p:not(.eyebrow),
.section-head p,
.section-head.light p,
.step-grid p,
.why > div > p,
.location > div > p,
.story-card p,
.office-card p,
.final-cta p,
.footer a,
.footer p {
  color: #fff;
}

.step-grid,
.partner-icons {
  border-color: #d8b34a;
}

.step-grid article {
  border-color: rgba(216, 179, 74, 0.42);
}

.story-card,
.office-card,
.client-cards article {
  background: #1d092b;
  border-color: #d8b34a;
}

.button.gold,
.button.dark {
  color: #150126;
  background: #d8b34a;
  border-color: #d8b34a;
}

.button.outline {
  color: #d8b34a;
  border-color: #d8b34a;
}

.arch {
  border-color: #d8b34a;
}

.footer {
  background: #150126;
  border-top: 1px solid #d8b34a;
}

.footer-bottom {
  color: #fff;
  border-top-color: #d8b34a;
}

/* Nova assinatura da marca no cabeçalho */
.site-header {
  grid-template-columns: minmax(225px, auto) 1fr auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-symbol {
  display: block;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  background-image: url("assets/logo-seven-gold-2026.jpeg");
  background-repeat: no-repeat;
  background-position: center 36%;
  background-size: 168px 168px;
  border-radius: 50%;
}

.brand-name {
  display: block;
  flex: 0 0 155px;
  width: 155px;
  height: 46px;
  background: url("assets/logo-seven-gold-financeira-texto-oficial.png") center / contain no-repeat;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.brand-name small {
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 440px) {
  .brand-symbol {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
    background-size: 140px 140px;
  }

  .brand-name {
    flex-basis: 125px;
    width: 125px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .inner-page .site-header {
    gap: 10px;
  }

  .inner-page .site-header .brand {
    gap: 8px;
  }

  .inner-page .site-header .brand-symbol {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    background-size: 122px 122px;
  }

  .inner-page .site-header .brand-name {
    flex-basis: 108px;
    width: 108px;
    height: 34px;
  }

  .inner-page .site-header > .button.gold:not(.header-cta) {
    flex-shrink: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}

/* Conteúdo mais centralizado e com respiro lateral */
:root {
  --page-gutter: clamp(42px, 10.5vw, 210px);
}

.site-header,
.hero,
.section,
.footer {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.hero,
.why,
.location {
  column-gap: clamp(45px, 6vw, 100px);
}

@media (min-width: 1600px) {
  :root {
    --page-gutter: max(190px, calc((100vw - 1500px) / 2));
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(24px, 6vw, 54px);
  }
}

@media (max-width: 520px) {
  :root {
    --page-gutter: 22px;
  }
}

/* Ícone de casa nos botões de simulação */
.footer-simulate::before {
  content: "⌂";
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  color: currentColor;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.footer-simulate {
  display: flex;
  align-items: center;
}

.whatsapp-button::before {
  content: "";
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background: url("https://static.wixstatic.com/media/16b10d_bc539f48516344e2a7eaa7daf22ddc7a~mv2.webp") center / contain no-repeat;
}

.why .whatsapp-button {
  min-height: 58px;
  padding: 0 30px;
  font-size: 14px;
}

.why .whatsapp-button::before {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url("https://cdn.simpleicons.org/whatsapp/E8B138");
}

.video-button {
  position: relative;
  padding-left: 62px;
}

.video-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 28px;
  width: 18px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: translateY(-50%);
}

.video-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transform: translateY(-50%);
}

.calendar-button::before,
.map-button::before {
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
}

.button.calendar-button::before {
  content: "▦";
}

.map-button::before {
  content: "⌖";
}

/* WhatsApp flutuante maior e com chamada de atenção */
.whatsapp {
  right: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  overflow: visible;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: whatsapp-pulse 1.45s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.62), 0 16px 34px rgba(0, 0, 0, 0.35);
}

.whatsapp img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 0;
  box-shadow: none;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

/* Sombra estática nos botões "Quero simular" do cabeçalho. */
.site-header .button.gold[href="simulador.html"] {
  box-shadow: 0 0 0 0 rgba(232, 177, 56, 0.42), 0 12px 28px rgba(232, 177, 56, 0.16);
}

@media (max-width: 650px) {
  .whatsapp {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
  }

  .whatsapp img {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp {
    animation: none;
  }
}

/* Seções intercaladas como no site oficial */
.steps,
.team,
.story,
.partners {
  color: #150126;
  background: #fff;
}

.hero,
.why,
.clients,
.location,
.final-cta {
  color: #fff;
  background-color: #150126;
}

.steps .section-head p,
.team .section-head p,
.partners .section-head p,
.steps .step-grid p,
.story .story-card p {
  color: #5f5465;
}

.steps .step-grid h3 {
  color: #150126;
}

.steps .step-grid {
  border-top-color: rgba(21, 1, 38, 0.2);
}

.steps .step-grid article,
.steps .step-grid article + article {
  border-color: rgba(185, 130, 32, 0.18);
}

.story-card {
  color: #150126;
  background: #f8f5f0;
  border-color: #d8b34a;
}

.team .arch {
  background: #150126;
}

.partners .partner-icons {
  border-color: rgba(21, 1, 38, 0.2);
}

.google-map {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 480px;
  margin-top: 10px;
  border: 2px solid #d8b34a;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.google-map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: saturate(0.78) contrast(1.05);
}

@media (max-width: 650px) {
  .google-map,
  .google-map iframe {
    min-height: 380px;
    height: 380px;
  }
}

/* Carrossel de especialistas */
.specialists-carousel {
  position: relative;
  max-width: 1280px;
  margin: 58px auto 0;
  padding: 0 74px 38px;
}

.specialists-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  border-radius: 0;
  outline: none;
}

.specialist-card {
  flex: 0 0 calc((100% - 36px) / 3);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  scroll-snap-align: center;
  background: #150126;
  border: 3px solid #d8b34a;
  border-radius: 50%;
}

.specialist-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1200px;
  text-align: left;
}

.testimonial-video {
  overflow: hidden;
  border: 2px solid #d8b34a;
  border-radius: 180px 180px 14px 14px;
  background: #150126;
  box-shadow: 0 24px 55px rgba(21, 1, 38, 0.2);
}

.testimonial-video video {
  display: block;
  width: 100%;
  max-height: 640px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #150126;
}

.story-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.story-copy > span {
  color: #d8b34a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-video {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .story-copy {
    text-align: center;
  }
}

@media (max-width: 1000px) and (min-width: 651px) {
  .specialist-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 5px;
  color: #150126;
  background: #d8b34a;
  border: 0;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-70%);
  box-shadow: 0 12px 28px rgba(21, 1, 38, 0.2);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(21, 1, 38, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots button.active {
  width: 28px;
  background: #d8b34a;
  border-radius: 99px;
}

@media (max-width: 650px) {
  .specialists-carousel {
    padding: 0 0 44px;
  }

  .specialists-track {
    overflow-x: auto;
    border-radius: 0;
    scrollbar-width: none;
  }


  .specialist-card {
    flex-basis: 100%;
  }

  .specialists-track::-webkit-scrollbar { display: none; }
  .carousel-arrow { width: 46px; height: 46px; top: auto; bottom: 0; transform: none; }
  .carousel-prev { left: calc(50% - 88px); }
  .carousel-next { right: calc(50% - 88px); }
  .carousel-dots { margin-top: 18px; }
}

/* Hero com fotografia integrada ao fundo */
.hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.99) 28%, rgba(0, 0, 0, 0.82) 43%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(0deg, #000 0%, transparent 28%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 18%;
}

.hero-visual .arch {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-visual .arch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.82) contrast(1.05) brightness(0.78);
  transform: scale(0.92);
  transform-origin: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.72) 25%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, rgba(0, 0, 0, 0.72) 25%, #000 42%);
}

@media (max-width: 900px) {
  .hero {
    display: block;
  }

  .hero-visual {
    inset: 0;
    max-width: none;
    margin: 0;
    opacity: 0.72;
  }

  .hero::after {
    background: linear-gradient(90deg, #150126 0%, rgba(21, 1, 38, 0.9) 45%, rgba(21, 1, 38, 0.38) 100%), linear-gradient(0deg, #150126 0%, transparent 45%);
  }
}

/* Identidade final: estas regras precisam permanecer no fim do arquivo */
:root {
  --purple: #000;
  --purple2: #090909;
}

body {
  background: #000;
}

.site-header,
.hero,
.dark-section,
.why,
.clients,
.location,
.final-cta,
.footer {
  background-color: #000;
}

.site-header {
  background: #000;
  -webkit-backdrop-filter: blur(0) saturate(1);
  backdrop-filter: blur(0) saturate(1);
  border-bottom: 1px solid rgba(232, 177, 56, 0.72);
  box-shadow: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(28, 28, 28, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(0.78);
  backdrop-filter: blur(18px) saturate(0.78);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* Entrada suave das seções durante a rolagem */
.reveal-section > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-section > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-section > *:nth-child(4) { transition-delay: 0.24s; }

.reveal-section.reveal-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.steps.reveal-section .step-grid article {
  opacity: 0;
  transform: translateY(52px) scale(0.96);
  transition:
    opacity 0.62s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.steps.reveal-section.reveal-visible .step-grid article {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.steps.reveal-section.reveal-visible .step-grid article:nth-child(1) { transition-delay: 0.14s; }
.steps.reveal-section.reveal-visible .step-grid article:nth-child(2) { transition-delay: 0.25s; }
.steps.reveal-section.reveal-visible .step-grid article:nth-child(3) { transition-delay: 0.36s; }
.steps.reveal-section.reveal-visible .step-grid article:nth-child(4) { transition-delay: 0.47s; }
.steps.reveal-section.reveal-visible .step-grid article:nth-child(5) { transition-delay: 0.58s; }

.steps.reveal-section.reveal-visible .step-grid article:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero.reveal-section > * {
  transform: translateY(22px);
}

.hero.reveal-section.reveal-visible > * {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .steps::before {
    transform: translateX(-50%) scaleX(1);
    transition: none;
  }

  .steps.reveal-section .step-grid article {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero {
  background: radial-gradient(circle at 78% 28%, rgba(232, 177, 56, 0.17), transparent 28%), #000;
}

.hero::after {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.76) 100%);
}

.brand-symbol {
  background-image: url("assets/logo-g7-transparente.png");
  background-position: center 46%;
  background-size: 142px 142px;
}

.brand-name strong,
.brand-name small {
  color: var(--gold-solid);
  background: var(--gold-solid);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 7px rgba(245, 216, 116, 0.12);
}

.footer h3 { font-size: 12px; }
.footer a,.footer p { font-size: 15px; line-height: 1.65; }
.footer-bottom,.footer-bottom a,.footer-bottom span { font-size: 12px; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 177, 56, 0.62);
  border-radius: 50%;
  background: rgba(232, 177, 56, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  background: rgba(232, 177, 56, 0.14);
  transform: translateY(-2px);
}

.social-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer .social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(232, 177, 56, 0.62);
  border-radius: 50%;
  background: rgba(232, 177, 56, 0.05);
}

.footer .social-link:hover {
  background: rgba(232, 177, 56, 0.14);
  transform: translateY(-2px);
}

.whatsapp {
  background: #25d366;
  border: 0;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
}

.whatsapp img {
  width: 38px;
  height: 38px;
}

@media (max-width: 650px) {
  .whatsapp img {
    width: 34px;
    height: 34px;
  }
}

.location {
  row-gap: 28px;
}

.location-booking-button {
  margin-top: 26px;
}

.location .location-booking-button .calendar-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 21px;
  margin-right: 0;
}

@media (max-width: 650px) {
  .location {
    row-gap: 22px;
  }

  .location-booking-button {
    width: 100%;
    margin-top: 22px;
  }
}

/* Primeiro banner mais próximo do cabeçalho */
.hero {
  align-items: start;
  padding-top: clamp(48px, 5vw, 72px);
}

@media (max-width: 650px) {
  .hero {
    padding-top: 40px;
  }
}

/* Menor distância entre o início da seção e seu subtítulo */
.section,
.dream-wall-section,
.testimonial-page-section,
.success-final-cta,
.simulator-content,
.inner-hero,
.legal-hero {
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(55px, 6.5vw, 90px);
}

@media (max-width: 650px) {
  .section,
  .dream-wall-section,
  .testimonial-page-section,
  .success-final-cta,
  .simulator-content,
  .inner-hero,
  .legal-hero {
    padding-top: 30px;
    padding-bottom: 48px;
  }
}

/* Menos espaço vazio após o carrossel de especialistas */
.team.team {
  padding-bottom: clamp(34px, 4vw, 54px);
}

.team .specialists-carousel {
  padding-bottom: 18px;
}

@media (max-width: 650px) {
  .team.team {
    padding-bottom: 38px;
  }

  .team .specialists-carousel {
    padding-bottom: 44px;
  }
}

.eyebrow,
.section-head > span,
.story-card > span,
.story-copy > span,
.office-card > span,
.inner-hero > span,
.simulator-benefits > span,
.wall-cta > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 650px) {
  .eyebrow,
  .section-head > span,
  .story-card > span,
  .story-copy > span,
  .office-card > span,
  .inner-hero > span,
  .simulator-benefits > span,
  .wall-cta > span {
    font-size: 12px;
  }
}

/* Banner inicial: conteúdo mais próximo do cabeçalho no desktop. */
@media (min-width: 901px) {
  .hero.hero {
    padding-top: 0;
  }

  .hero.hero > .hero-copy {
    margin-top: -34px;
  }
}

/* Simulador compacto: formulário completo visível em 100% de zoom. */
@media (min-width: 901px) {
  .simulator-showcase {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .simulator-redesign .simulator-form-card {
    padding: 24px 34px;
  }

  .simulator-redesign .simulator-form-heading {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }

  .simulator-redesign .simulator-form-heading > .material-symbols-outlined {
    margin-bottom: 3px;
    font-size: 38px;
  }

  .simulator-redesign .simulator-form-heading h2 {
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.04;
  }

  .simulator-redesign .simulator-form-grid {
    gap: 13px 22px;
  }

  .simulator-redesign .simulator-form-card label {
    gap: 6px;
    font-size: 13px;
  }

  .simulator-redesign .simulator-form-card input,
  .simulator-redesign .simulator-form-card select,
  .simulator-redesign .simulator-form-card textarea {
    min-height: 50px;
    padding-left: 48px;
    font-size: 14px;
  }

  .simulator-redesign .simulator-field > .material-symbols-outlined {
    left: 14px;
    font-size: 22px;
  }

  .simulator-redesign .simulator-form-card textarea {
    height: 78px;
    min-height: 78px;
    padding-top: 12px;
  }

  .simulator-redesign .simulator-textarea > .material-symbols-outlined {
    top: 14px;
  }

  .simulator-redesign .simulator-form-card .form-submit {
    min-height: 58px;
    margin-top: 16px;
  }

  .simulator-redesign .simulator-form-card .form-note {
    gap: 8px;
    margin-top: 12px;
    padding-top: 11px;
    font-size: 12px;
    line-height: 1.35;
  }

  .simulator-redesign .simulator-form-card .form-note .material-symbols-outlined {
    font-size: 21px;
  }
}

/* Um pouco mais de luz no rosto da lateral direita do banner inicial. */
@media (min-width: 901px) {
  .hero.hero::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.96) 28%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.68) 100%);
  }
}

.hero h1,
.why .section-head h2,
.clients .section-head h2,
.location .section-head h2,
.final-cta h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
}

.steps .section-head h2,
.team .section-head h2,
.partners .section-head h2,
.story-card h2 {
  color: #e8b138;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.office-card,
.client-cards article {
  background: #090909;
}

@media (max-width: 900px) {
  .hero::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.38) 100%), linear-gradient(0deg, #000 0%, transparent 45%);
  }
}

/* Mantém o ícone e o texto centralizados como um único conjunto nos CTAs. */
.button:has(> .house-icon),
.hero-home__button:has(> .house-icon),
.hero-mural__button:has(> .house-icon) {
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.button > .house-icon,
.hero-home__button > .house-icon,
.hero-mural__button > .house-icon {
  position: relative;
  top: 0;
  flex: 0 0 22px;
  align-self: center;
  width: 22px;
  height: 22px;
  margin: 0 !important;
  line-height: 1;
}

.button > .house-icon::before,
.hero-home__button > .house-icon::before,
.hero-mural__button > .house-icon::before {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

/* Centraliza a assinatura do rodapé e alinha sua base aos Links rápidos. */
.footer > .footer-about p {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (min-width: 901px) {
  .footer > .footer-about img {
    margin-bottom: -11px;
  }
}

/* Dá mais presença aos símbolos dentro das duas bordas do rodapé. */
.footer.footer .footer-bottom .footer-copyright > .material-symbols-outlined {
  font-size: 36px;
  line-height: 1;
}

.footer.footer .footer-bottom .footer-security > .material-symbols-outlined {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  font-size: 32px;
  line-height: 1;
}

/* Depoimento em destaque: composição clara, ampla e premium. */
.home-page .story.section {
  overflow: hidden;
  padding: clamp(40px, 5vw, 78px) clamp(20px, 4.5vw, 76px);
  background:
    radial-gradient(circle at 10% 10%, rgba(227, 184, 63, 0.12), transparent 24%),
    #f7f3eb;
}

.home-page .story-card.story-layout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(560px, 640px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(50px, 5vw, 80px);
  width: min(100%, 1560px);
  max-width: none;
  min-height: 790px;
  margin: 0 auto;
  padding: clamp(66px, 5.7vw, 96px);
  border: 1px solid rgba(185, 133, 32, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 9% 14%, rgba(225, 177, 55, 0.22), transparent 25%),
    radial-gradient(circle at 26% 92%, rgba(225, 177, 55, 0.17), transparent 26%),
    #fcf9f3;
  box-shadow:
    0 26px 70px rgba(85, 59, 13, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  text-align: left;
}

.home-page .story-card.story-layout::before,
.home-page .story-card.story-layout::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(185, 133, 32, 0.34);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.home-page .story-card.story-layout::before {
  top: -180px;
  bottom: -180px;
  left: -315px;
  width: 650px;
  border-width: 2px;
  box-shadow: 0 0 24px rgba(227, 184, 63, 0.16);
}

.home-page .story-card.story-layout::after {
  top: -86px;
  bottom: -118px;
  left: -236px;
  width: 520px;
  opacity: 0.78;
}

.home-page .story-card .testimonial-videos,
.home-page .story-card .story-copy {
  position: relative;
  z-index: 1;
}

.home-page .story-card .testimonial-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.5vw, 22px);
  width: 100%;
}

.home-page .story-card .testimonial-video {
  overflow: visible;
  justify-self: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 55px;
  background: transparent;
  box-shadow: none;
}

.home-page .story-card .testimonial-video::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5% -11% -5%;
  border-radius: 50%;
  background: rgba(215, 164, 43, 0.22);
  filter: blur(32px);
  pointer-events: none;
}

.home-page .story-card .testimonial-video video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  border: 3px solid #b98520;
  border-radius: 55px;
  background: #100d08;
  box-shadow:
    0 28px 45px rgba(67, 45, 11, 0.22),
    0 8px 16px rgba(185, 133, 32, 0.12);
  object-fit: cover;
}

.home-page .story-card .story-copy {
  width: 100%;
  max-width: 820px;
}

.home-page .story-card .story-copy > span {
  display: block;
  width: fit-content;
  color: #b98520;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.28em;
}

.home-page .story-card .story-copy > span::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  margin-top: 24px;
  background: rgba(185, 133, 32, 0.72);
}

.home-page .story-card .story-copy h2 {
  max-width: 800px;
  margin: 27px 0 0;
  color: #b98520;
  background: none;
  font-family: var(--display);
  font-size: clamp(58px, 4.25vw, 72px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #b98520;
}

.home-page .story-card .story-copy p {
  max-width: 720px;
  margin: 28px 0 0;
  color: #66636b;
  font-size: 19px;
  line-height: 1.5;
}

body.home-page main .story-card a.video-button {
  width: min(100%, 520px) !important;
  min-height: 80px !important;
  margin-top: 34px;
  padding: 0 38px 0 82px !important;
  border: 1px solid rgba(249, 220, 123, 0.9);
  color: #090909;
  background: #e3b83f;
  box-shadow: 0 18px 30px rgba(151, 105, 15, 0.2);
  font-size: 13px !important;
  font-weight: 700;
  transition: filter 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.home-page main .story-card a.video-button::before {
  left: 36px;
  width: 28px;
  height: 20px;
  border-width: 2px;
}

body.home-page main .story-card a.video-button::after {
  left: 52px;
  transform: translate(-35%, -50%);
}

body.home-page main .story-card a.video-button:hover {
  filter: brightness(1.06);
  box-shadow: 0 23px 35px rgba(151, 105, 15, 0.26);
  transform: translateY(-4px);
}

body.home-page main .story-card a.video-button:focus-visible {
  outline: 3px solid rgba(185, 133, 32, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .home-page .story-card.story-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding: clamp(48px, 5vw, 68px);
  }

  .home-page .story-card .testimonial-videos {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .home-page .story-card .story-copy h2 {
    font-size: clamp(48px, 5.2vw, 60px);
  }
}

@media (max-width: 850px) {
  .home-page .story.section {
    padding-right: clamp(20px, 4vw, 34px);
    padding-left: clamp(20px, 4vw, 34px);
  }

  .home-page .story-card.story-layout {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding: 56px clamp(28px, 7vw, 58px) 62px;
  }

  .home-page .story-card.story-layout::before {
    left: -405px;
    opacity: 0.55;
  }

  .home-page .story-card.story-layout::after {
    left: -330px;
    opacity: 0.38;
  }

  .home-page .story-card .testimonial-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
  }

  .home-page .story-card .testimonial-videos {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .home-page .story-card .story-copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .home-page .story-card .story-copy > span {
    margin: 0 auto;
  }

  .home-page .story-card .story-copy > span::after {
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .story-card .story-copy h2 {
    max-width: none;
    font-size: clamp(46px, 7vw, 58px);
  }

  .home-page .story-card .story-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  body.home-page main .story-card a.video-button {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .home-page .story.section {
    padding: 28px 20px 42px;
  }

  .home-page .story-card.story-layout {
    gap: 42px;
    padding: 38px 16px 44px;
    border-radius: 24px;
  }

  .home-page .story-card.story-layout::before,
  .home-page .story-card.story-layout::after {
    opacity: 0.22;
  }

  .home-page .story-card .testimonial-video {
    width: 100%;
  }

  .home-page .story-card .testimonial-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .story-card .testimonial-video:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 6px);
  }

  .home-page .story-card .testimonial-video,
  .home-page .story-card .testimonial-video video {
    border-radius: 42px;
  }

  .home-page .story-card .story-copy > span {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .home-page .story-card .story-copy > span::after {
    width: 130px;
    margin-top: 18px;
  }

  .home-page .story-card .story-copy h2 {
    margin-top: 23px;
    font-size: clamp(40px, 10.5vw, 44px);
    line-height: 1;
    text-wrap: pretty;
  }

  .home-page .story-card .story-copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  body.home-page main .story-card a.video-button {
    width: 100% !important;
    min-height: 68px !important;
    margin-top: 30px;
    padding-right: 20px !important;
    padding-left: 58px !important;
    font-size: 11px !important;
  }

  body.home-page main .story-card a.video-button::before {
    left: 22px;
    width: 24px;
    height: 18px;
  }

  body.home-page main .story-card a.video-button::after {
    left: 34px;
  }
}

/* Menu mobile: fundo preto com desfoque sobre a página. */
@media (max-width: 900px) {
  .site-header.menu-open,
  .home-page .site-header.menu-open,
  .success-page-body .site-header.menu-open {
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(20px) saturate(0.82);
    backdrop-filter: blur(20px) saturate(0.82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  }

  .site-header.menu-open .main-nav {
    padding-top: 10px;
    padding-bottom: 12px;
    background: rgba(0, 0, 0, 0.72);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .site-header.menu-open .main-nav a {
    border-top-color: rgba(232, 177, 56, 0.18);
  }
}

/* Centraliza a apresentação da seção de etapas somente no mobile. */
@media (max-width: 650px) {
  .home-page .steps .section-head,
  .home-page .steps .section-head h2,
  .home-page .steps .section-head p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-page .steps .section-head > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Centraliza o conteúdo introdutório da localização somente no mobile. */
@media (max-width: 650px) {
  .home-page .location > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .home-page .location > div:first-child,
  .home-page .location .section-head,
  .home-page .location .section-head h2,
  .home-page .location > div:first-child > p {
    text-align: center;
  }

  .home-page .location .section-head,
  .home-page .location .section-head h2,
  .home-page .location > div:first-child > p {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .location .section-head > span {
    display: block;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .location .location-booking-button {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Mantém o título de contato visível abaixo do cabeçalho ao navegar pelo menu mobile. */
@media (max-width: 900px) {
  .footer-contact {
    scroll-margin-top: 96px;
  }
}

/* Aproxima o subtítulo do início da seção escura somente no mobile. */
@media (max-width: 650px) {
  .home-page .why.why {
    align-items: flex-start;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 28px;
  }
}

/* Cabeçalho desktop mais compacto, preservando o menu mobile. */
@media (min-width: 901px) {
  .site-header {
    grid-template-columns: minmax(205px, auto) 1fr auto;
    gap: 26px;
    min-height: 76px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header .brand {
    gap: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .site-header .brand-symbol {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    background-size: 128px 128px;
  }

  .site-header .brand-name {
    flex-basis: 140px;
    width: 140px;
    height: 42px;
  }

  .site-header .main-nav {
    gap: 24px;
    font-size: 10px;
  }

  .site-header > .button {
    min-height: 44px;
    padding-right: 22px;
    padding-left: 22px;
    font-size: 10px;
  }

  .site-header > .button .house-icon {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .home-page .hero-home__text {
    padding-top: 0;
    transform: translateY(-30px);
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .home-page .hero-home__text {
    transform: translateY(0);
  }
}

/* Alinhamento óptico do ícone com o texto nos CTAs finais. */
.success-final-cta .home-cta > .house-icon::before,
.final-cta .home-cta > .house-icon::before {
  transform: translateY(-4px);
}
