:root {
  --navy-1000: #02060c;
  --navy-950: #050b14;
  --navy-900: #08111e;
  --navy-850: #0b1626;
  --navy-800: #0e1b2d;
  --gold: #d6ad5b;
  --gold-2: #f0cf83;
  --cream: #f5efe4;
  --white: #fffaf1;
  --muted: rgba(255, 250, 241, .72);
  --muted-2: rgba(255, 250, 241, .52);
  --line: rgba(214, 173, 91, .26);
  --glass: rgba(8, 17, 30, .62);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header: 86px;
  --radius: 30px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 72% 8%, rgba(214, 173, 91, .10), transparent 32%),
    radial-gradient(circle at 16% 18%, rgba(46, 97, 150, .14), transparent 28%),
    linear-gradient(180deg, var(--navy-1000), var(--navy-950) 42%, #030912 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 10%, #000, transparent 68%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 22%, rgba(214, 173, 91, .055) 22.1%, transparent 22.25%),
    linear-gradient(300deg, transparent 0 61%, rgba(214, 173, 91, .045) 61.1%, transparent 61.24%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #02060c;
  transition: opacity .55s ease, visibility .55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  width: min(300px, 76vw);
  display: grid;
  justify-items: center;
  gap: 22px;
}

.preloader__inner img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .45));
}

.preloader__inner span {
  position: relative;
  display: block;
  width: 170px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.preloader__inner span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.scroll-line {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  width: 100%;
  height: 2px;
  background: transparent;
}

.scroll-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 24px rgba(214, 173, 91, .72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(2, 6, 12, .86), rgba(2, 6, 12, .18) 84%, transparent);
  border-bottom: 1px solid transparent;
  transition: height .28s ease, background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(5, 11, 20, .72);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 14vw, 220px);
  min-width: 146px;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: rgba(255, 250, 241, .84);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav a:not(.nav__cta) {
  position: relative;
  padding-block: 12px;
}
.btn-entrar{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: #ffffff;
    color: #000;
    transition: 0.2s ease;
}

.btn-entrar:hover{
    opacity: 0.85;
}

.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  padding: 16px 22px;
  color: #171006;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 52px rgba(214, 173, 91, .24);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header) + 92px) max(24px, calc((100vw - 1180px) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
  isolation: isolate;
}

.blueprint {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(30deg, transparent 0 38%, rgba(214, 173, 91, .22) 38.08%, transparent 38.2%),
    linear-gradient(150deg, transparent 0 68%, rgba(255, 255, 255, .16) 68.08%, transparent 68.2%),
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(255, 255, 255, .06) 95px, transparent 96px);
  mask-image: radial-gradient(circle at 36% 22%, #000 0 36%, transparent 72%);
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}

.orb--one {
  width: 340px;
  height: 340px;
  top: 14%;
  right: 15%;
  background: rgba(214, 173, 91, .12);
}

.orb--two {
  width: 420px;
  height: 420px;
  bottom: 12%;
  left: -120px;
  background: rgba(37, 86, 139, .22);
}

.eyebrow {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .28em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.eyebrow--muted {
  color: rgba(255, 250, 241, .78);
}

.hero h1,
.section-title h2,
.contrast h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(4rem, 8vw, 8.75rem);
}

.hero h1 em {
  display: block;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 300;
}

.hero__text {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.18vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

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

.button--gold {
  color: #181004;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 20px 55px rgba(214, 173, 91, .23);
}

.button--gold:hover {
  box-shadow: 0 24px 70px rgba(214, 173, 91, .34);
}

.button--ghost {
  background: rgba(255, 255, 255, .015);
  border-color: rgba(214, 173, 91, .34);
}

.button--ghost:hover {
  border-color: rgba(214, 173, 91, .7);
  background: rgba(214, 173, 91, .06);
}

.hero-card {
  position: relative;
}

.hero-card__frame {
  position: relative;
  min-height: 610px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 91, .42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    radial-gradient(circle at 65% 35%, rgba(214, 173, 91, .14), transparent 38%),
    rgba(8, 17, 30, .48);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .36);
}

.hero-card__frame::before,
.final-cta::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  left: 0;
  top: 0;
}

.hero-card__frame::after,
.final-cta::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  right: 0;
  bottom: 0;
}

.hero-card__top {
  position: relative;
  z-index: 2;
  width: min(260px, 70%);
  padding: 26px;
  border: 1px solid rgba(214, 173, 91, .24);
  background: rgba(5, 11, 20, .36);
  backdrop-filter: blur(8px);
}

.hero-card__top span {
  display: block;
  color: var(--gold-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-card__top strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.08;
}

.architecture-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.architecture-card::before {
  content: "";
  position: absolute;
  inset: 14% 6% 12%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 40%),
    radial-gradient(circle at 42% 55%, rgba(214, 173, 91, .16), transparent 34%);
}

.house-shape {
  position: absolute;
  left: 10%;
  right: 7%;
  bottom: 12%;
  height: 58%;
  transform: perspective(900px) rotateY(-7deg) rotateX(1deg);
}

.house-shape__roof {
  position: absolute;
  left: 12%;
  top: 6%;
  width: 78%;
  height: 17%;
  background: linear-gradient(90deg, #151b23, #26313d);
  transform: skewX(-16deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.house-shape__body {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 70%;
  height: 52%;
  background:
    linear-gradient(90deg, rgba(214, 173, 91, .18) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #796c59, #151d29 45%, #090f19);
  border: 1px solid rgba(255, 255, 255, .11);
}

.house-shape__glass {
  position: absolute;
  left: 37%;
  top: 27%;
  width: 30%;
  height: 42%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .13) 0 1px, transparent 1px 36%),
    linear-gradient(180deg, rgba(240, 207, 131, .52), rgba(42, 60, 78, .28));
  box-shadow: inset 0 0 50px rgba(240, 207, 131, .18), 0 0 48px rgba(214, 173, 91, .16);
}

.house-shape__base {
  position: absolute;
  left: 5%;
  right: 0;
  bottom: 6%;
  height: 20%;
  background:
    repeating-linear-gradient(180deg, rgba(240, 207, 131, .55) 0 2px, transparent 2px 15px),
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  clip-path: polygon(6% 20%, 100% 0, 92% 100%, 0 100%);
  filter: drop-shadow(0 0 24px rgba(214, 173, 91, .26));
}

.light {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 207, 131, .26), transparent 64%);
  filter: blur(12px);
}

.light--a { right: 10%; top: 31%; }
.light--b { left: 30%; bottom: 23%; }
.light--c { left: 13%; bottom: 9%; }

.hero-card__list {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(214, 173, 91, .22);
  background: rgba(5, 11, 20, .56);
  backdrop-filter: blur(12px);
}

.hero-card__list li {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: rgba(255, 250, 241, .78);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(214, 173, 91, .18);
}

.hero-card__list li:last-child {
  border-right: 0;
}

.pillars,
.contrast,
.process,
.final-cta,
.footer {
  width: var(--container);
  margin-inline: auto;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(8, 17, 30, .34);
}

.pillar {
  min-height: 184px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.icon-line {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.pillar h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pillar p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contrast {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(214, 173, 91, .08), transparent 36%),
    rgba(5, 11, 20, .35);
}

.contrast__side {
  min-height: 430px;
  padding: clamp(34px, 5vw, 70px);
}

.contrast__side:first-child {
  border-right: 1px solid var(--line);
}

.contrast h2 {
  max-width: 500px;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}

.contrast ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 17px;
  color: var(--muted);
}

.contrast li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.contrast li::before {
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--gold-2);
  font-weight: 900;
}

.contrast__side--pain li::before {
  content: "×";
}

.contrast__side--method li::before {
  content: "✓";
}

.contrast__vs {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #050b14;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
}

.process {
  padding: 112px 0 72px;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

.process__grid {
  position: relative;
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.process__grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

.step {
  position: relative;
  text-align: center;
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.step h3 {
  margin: 26px 0 12px;
  color: var(--white);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.step p {
  margin: 0 auto;
  max-width: 230px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 120%, rgba(214, 173, 91, .18), transparent 34%),
    rgba(8, 17, 30, .42);
}

.final-cta__blueprint {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34%;
  height: 100%;
  opacity: .16;
  background:
    linear-gradient(30deg, transparent 0 34%, var(--gold) 34.1%, transparent 34.35%),
    linear-gradient(150deg, transparent 0 52%, var(--gold) 52.1%, transparent 52.3%),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(214,173,91,.8) 49px, transparent 50px);
  mask-image: linear-gradient(90deg, #000, transparent);
}

.final-cta__copy,
.final-cta__actions {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta__actions {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.link-arrow {
  color: var(--white);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .9;
}

.footer {
  min-height: 140px;
  margin-top: 34px;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 42px;
  align-items: center;
  color: var(--muted-2);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand img {
  width: 190px;
}

.footer p {
  max-width: 390px;
  margin: 0;
  line-height: 1.7;
}

.footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  padding: 18px 24px;
  border-radius: 999px;
  color: #171006;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32), 0 0 42px rgba(214, 173, 91, .16);
  font-size: .82rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 36px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header) + 72px);
  }

  .hero-card__frame {
    min-height: 500px;
  }

  .pillars,
  .contrast,
  .process__grid,
  .final-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .contrast__side:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contrast__vs {
    top: 50%;
  }

  .process__grid::before {
    display: none;
  }

  .footer address {
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 76px;
    --container: min(100% - 28px, 620px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 168px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(214, 173, 91, .32);
    background: rgba(255, 255, 255, .025);
    color: var(--white);
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: var(--white);
    transition: transform .24s ease;
  }

  .menu-button.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(214, 173, 91, .24);
    background: rgba(5, 11, 20, .94);
    backdrop-filter: blur(16px);
  }

  .nav.is-open {
    display: grid;
    gap: 12px;
  }

  .nav a {
    padding: 14px;
  }

  .nav__cta {
    text-align: center;
  }

  .hero {
    padding-inline: 18px;
    padding-top: calc(var(--header) + 54px);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.9rem);
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }

  .hero-card__frame {
    min-height: 430px;
    padding: 18px;
  }

  .hero-card__top {
    width: min(230px, 82%);
    padding: 18px;
  }

  .hero-card__list {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .hero-card__list li {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 173, 91, .15);
  }

  .hero-card__list li:last-child {
    border-bottom: 0;
  }

  .pillars,
  .contrast,
  .process,
  .final-cta,
  .footer {
    width: var(--container);
  }

  .contrast__side {
    min-height: auto;
    padding: 28px;
  }

  .contrast__vs {
    display: none;
  }

  .process {
    padding-block: 72px 48px;
  }

  .process__grid {
    gap: 26px;
  }

  .step {
    padding: 0 8px 28px;
    border-bottom: 1px solid rgba(214, 173, 91, .16);
  }

  .final-cta {
    padding: 28px;
  }

  .float-cta {
    right: 16px;
    bottom: 16px;
    padding: 15px 19px;
  }
}


/* v1.1 — marca completa e refinamento premium */
.site-header {
  background:
    linear-gradient(180deg, rgba(2, 6, 12, .92), rgba(2, 6, 12, .42) 76%, transparent),
    radial-gradient(circle at 16% 0%, rgba(214, 173, 91, .09), transparent 32%);
}

.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(5, 11, 20, .84), rgba(8, 17, 30, .72)),
    radial-gradient(circle at 4% 50%, rgba(214, 173, 91, .08), transparent 28%);
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 0;
  color: var(--white);
}

.brand__mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 48px;
  flex: 0 0 42px;
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
  border: 1px solid rgba(214, 173, 91, .18);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.006));
  opacity: .78;
  transform: skewX(-6deg);
}

.brand__mark img {
  position: relative;
  z-index: 1;
  width: 31px;
  max-width: 31px;
  height: auto;
  max-height: 39px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .34));
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.brand__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.2vw, 2.18rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.052em;
  color: var(--white);
  text-shadow: 0 14px 32px rgba(0,0,0,.32);
}

.brand__text small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 250, 241, .72);
  font-size: .62rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.hero {
  padding-top: calc(var(--header) + 74px);
}

.hero::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  top: var(--header);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 173, 91, .38), transparent);
  opacity: .7;
}

.hero h1 {
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  width: fit-content;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: .03em;
  right: .04em;
  bottom: .04em;
  height: .06em;
  background: linear-gradient(90deg, rgba(214, 173, 91, .0), rgba(214, 173, 91, .46), rgba(214, 173, 91, .0));
  z-index: -1;
}

.hero-card__frame {
  border-color: rgba(214, 173, 91, .54);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .012)),
    radial-gradient(circle at 58% 38%, rgba(214, 173, 91, .17), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(57, 105, 155, .18), transparent 34%),
    rgba(8, 17, 30, .54);
}

.hero-card__frame::before,
.hero-card__frame::after {
  width: 42px;
  height: 42px;
}

.architecture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 30%, rgba(214, 173, 91, .09) 30.1%, transparent 30.35%),
    linear-gradient(305deg, transparent 0 68%, rgba(255, 255, 255, .07) 68.1%, transparent 68.3%);
  pointer-events: none;
}

.pillars {
  box-shadow: 0 34px 100px rgba(0,0,0,.18);
}

.pillar {
  background:
    linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.006));
}

.float-cta {
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 22px 60px rgba(0, 0, 0, .32), 0 0 0 0 rgba(214, 173, 91, .22); }
  50% { box-shadow: 0 22px 60px rgba(0, 0, 0, .32), 0 0 0 10px rgba(214, 173, 91, 0); }
}

.footer__brand {
  width: auto;
}

.footer__brand .brand__mark {
  width: 36px;
  height: 42px;
  flex-basis: 36px;
}

.footer__brand .brand__mark img {
  width: 27px;
  max-width: 27px;
  max-height: 34px;
}

.footer__brand .brand__text strong {
  font-size: 1.62rem;
}

.footer__brand .brand__text small {
  font-size: .52rem;
  letter-spacing: .34em;
}

@media (max-width: 900px) {
  .brand__mark {
    width: 36px;
    height: 42px;
    flex-basis: 36px;
  }

  .brand__mark img {
    width: 27px;
    max-width: 27px;
    max-height: 35px;
  }

  .brand__text strong {
    font-size: 1.55rem;
  }

  .brand__text small {
    margin-top: 6px;
    font-size: .52rem;
    letter-spacing: .3em;
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 32px;
    height: 38px;
    flex-basis: 32px;
  }

  .brand__mark img {
    width: 24px;
    max-width: 24px;
    max-height: 31px;
  }

  .brand__text strong {
    font-size: 1.36rem;
  }

  .brand__text small {
    font-size: .46rem;
    letter-spacing: .23em;
  }

  .hero {
    padding-top: calc(var(--header) + 42px);
  }
}

@media (max-width: 420px) {
  .brand__text strong {
    font-size: 1.17rem;
  }

  .brand__text small {
    font-size: .4rem;
    letter-spacing: .16em;
  }

  .brand__mark {
    width: 28px;
    height: 34px;
    flex-basis: 28px;
  }

  .brand__mark img {
    width: 21px;
    max-width: 21px;
  }
}


/* v1.2 — imagem real new01 no hero e botões mais elegantes */
.nav__cta,
.button,
.float-cta {
  border-radius: 999px;
}

.nav__cta {
  padding-inline: 26px;
}

.architecture-card--image {
  position: absolute;
  inset: 30px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 91, .28);
  border-radius: 26px;
  background: rgba(5, 11, 20, .38);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 34px 90px rgba(0, 0, 0, .34);
}

.architecture-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .9;
  filter: saturate(1.02) contrast(1.04) brightness(.82);
  transform: scale(1.018);
}

.architecture-card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, .34), transparent 42%),
    linear-gradient(180deg, rgba(5, 11, 20, .12), rgba(5, 11, 20, .54));
}

.architecture-card--image::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(214, 173, 91, .20);
  border-radius: 20px;
}

.hero-card__top {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

/* desativa a casa geométrica antiga caso algum navegador mantenha estilos herdados */
.architecture-card--image .house-shape,
.architecture-card--image .light {
  display: none !important;
}

@media (max-width: 1040px) {
  .architecture-card--image {
    inset: 22px;
    border-radius: 22px;
  }

  .architecture-card--image::after {
    inset: 14px;
    border-radius: 16px;
  }
}

@media (max-width: 760px) {
  .architecture-card--image {
    inset: 16px;
    border-radius: 20px;
  }

  .architecture-card--image img {
    object-position: center;
  }

  .nav__cta,
  .button {
    border-radius: 22px;
  }
}


/* v1.3 — footer/social e WhatsApp sem sobrepor contato */
.footer {
  position: relative;
  padding-bottom: 72px;
}

.footer__contact {
  display: grid;
  justify-items: end;
  gap: 12px;
  font-style: normal;
  text-align: right;
  padding-right: 96px;
}

.footer__contact > a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(255, 250, 241, .68);
  line-height: 1.25;
  transition: color .22s ease, transform .22s ease;
}

.footer__contact > a:hover {
  color: var(--gold-2);
  transform: translateX(-2px);
}

.footer__contact i {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(214, 173, 91, .28);
  border-radius: 999px;
  color: rgba(255, 250, 241, .86);
  background: rgba(255, 255, 255, .025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.footer__social a:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 173, 91, .7);
  background: rgba(214, 173, 91, .09);
  color: var(--gold-2);
}

.footer__social i {
  font-size: 1.08rem;
  color: currentColor;
}

.float-cta {
  right: 28px;
  bottom: 28px;
  z-index: 88;
}

/* Quando estiver perto do rodapé, o JS sobe o botão para não cobrir email/telefone */
.float-cta.is-footer-safe {
  transform: translateY(-92px);
}

@media (max-width: 1040px) {
  .footer {
    padding-bottom: 118px;
  }

  .footer__contact {
    justify-items: start;
    text-align: left;
    padding-right: 0;
  }

  .footer__contact > a {
    justify-content: flex-start;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .float-cta.is-footer-safe {
    transform: translateY(-76px);
  }
}

@media (max-width: 760px) {
  /* Mobile estava aprovado: mantém comportamento mais estável e só dá respiro no rodapé */
  .footer {
    padding-bottom: 124px;
  }

  .footer__contact {
    gap: 11px;
  }

  .footer__contact > a {
    font-size: .95rem;
    word-break: break-word;
  }

  .footer__social a {
    width: 40px;
    height: 40px;
  }

  .float-cta {
    right: 16px;
    bottom: 16px;
  }

  .float-cta.is-footer-safe {
    transform: translateY(-70px);
  }
}


/* v1.4 — WhatsApp flutuante com ícone real */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.float-cta {
  width: 58px;
  height: 58px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0;
}

.float-cta i {
  font-size: 1.45rem;
  line-height: 1;
  color: #171006;
}

@media (max-width: 760px) {
  .float-cta {
    width: 52px;
    height: 52px;
  }

  .float-cta i {
    font-size: 1.28rem;
  }
}


/* v1.5 — fail-safe visual: se o JS falhar, o preloader não sequestra a página */
.preloader {
  animation: preloaderFailsafeHide .38s ease 2.4s forwards;
}

.preloader.is-hidden {
  animation: none;
}

@keyframes preloaderFailsafeHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
