:root {
  --navy: #32305a;
  --navy-dark: #1a1938;
  --orange: #f2650d;
  --cream: #f7f4ef;
  --ink: #252442;
  --muted: #6c6b7a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #fbd5bd; color: var(--navy-dark); }
a { color: inherit; text-decoration: none; }
section[id], footer[id] { scroll-margin-top: 90px; }

.site-header {
  height: 90px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(50, 48, 90, .08);
  backdrop-filter: blur(12px);
}
.brand img { display: block; width: 165px; height: 56px; object-fit: contain; border-radius: 12px; }
.site-header nav { display: flex; gap: 35px; font-size: 14px; font-weight: 700; color: #45445f; }
.site-header nav a, .nav-cta, .mobile-contact { transition: color .2s, transform .2s, background .2s; }
.site-header nav a:hover { color: var(--orange); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 2px solid var(--orange);
  padding: 10px 0;
}
.mobile-contact { display: none; }

.hero { min-height: 700px; position: relative; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/condominio-alto-padrao-v2.webp') center 54% / cover no-repeat;
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 21, 53, .94) 0%, rgba(36, 34, 73, .72) 38%, rgba(35, 33, 71, .18) 66%, rgba(31, 30, 60, .04) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 92px clamp(24px, 7vw, 108px) 48px;
}
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .19em; font-size: 12px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: #ffb17d; }
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(60px, 7vw, 102px);
  line-height: .93;
  letter-spacing: -.045em;
  margin: 24px 0;
}
.hero h1 em { color: #ff6f1c; font-weight: 400; }
.hero-copy { font-size: 19px; line-height: 1.7; max-width: 550px; color: #e9e8f0; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  padding: 17px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s, transform .2s;
}
.primary-btn:hover { background: #ff741f; transform: translateY(-2px); }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255, 255, 255, .55); padding: 8px 0; }
.primary-btn:focus-visible, .text-link:focus-visible, .site-header a:focus-visible, .contact-block a:focus-visible, .footer-bottom a:focus-visible {
  outline: 3px solid #ffb17d;
  outline-offset: 4px;
}
.trust-row { display: flex; align-items: center; gap: 27px; margin-top: 70px; font-size: 12px; color: #cfcedb; }
.trust-row span { display: flex; flex-direction: column; gap: 5px; }
.trust-row strong { font-family: Georgia, serif; font-size: 18px; color: #fff; }
.trust-row i { width: 1px; height: 38px; background: rgba(255, 255, 255, .22); }
.property-note {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  background: rgba(26, 25, 56, .82);
  backdrop-filter: blur(12px);
}
.property-note span { text-transform: uppercase; letter-spacing: .16em; font-size: 9px; color: #d7d5e4; }
.property-note strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }

.intro {
  padding: 110px clamp(24px, 8vw, 125px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: start;
}
.section-kicker { color: var(--orange); margin: 0 0 18px; }
.intro h2, .section-heading h2, .advantages h2, .contact-block h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0;
}
.intro-copy { padding-top: 30px; }
.intro-copy p { font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0 0 20px; }

.services { background: var(--cream); padding: 105px clamp(24px, 8vw, 125px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.section-heading > p { max-width: 420px; color: var(--muted); line-height: 1.75; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid #d6d1c8; }
.service-grid article { padding: 38px 40px 20px 0; min-height: 315px; position: relative; }
.service-grid article + article { border-left: 1px solid #d6d1c8; padding-left: 40px; }
.service-number { font-family: Georgia, serif; color: #a6a1a1; font-size: 13px; }
.service-icon { display: block; color: var(--orange); width: 35px; height: 35px; margin: 38px 0 23px; }
.service-grid h3 { font-family: Georgia, serif; font-size: 26px; font-weight: 400; margin: 0 0 15px; }
.service-grid p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.service-line { position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--orange); }

.process { padding: 110px clamp(24px, 8vw, 125px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; background: #fff; }
.process-heading h2, .proposal h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -.035em; margin: 0; }
.process-heading > p:last-child { color: var(--muted); line-height: 1.8; max-width: 520px; margin: 28px 0 0; }
.process-steps { border-top: 1px solid #e3e1e5; }
.process-steps article { display: grid; grid-template-columns: 38px 44px 1fr; gap: 20px; align-items: start; padding: 29px 0; border-bottom: 1px solid #e3e1e5; }
.process-steps article > span { color: #aaa6b2; font-family: Georgia, serif; font-size: 13px; padding-top: 7px; }
.process-steps svg { color: var(--orange); width: 30px; height: 30px; }
.process-steps h3 { font-family: Georgia, serif; font-size: 24px; font-weight: 400; margin: 0 0 8px; }
.process-steps p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 15px; }

.statement { background: var(--navy); color: #fff; min-height: 310px; padding: 75px 12vw; display: flex; align-items: center; gap: 55px; }
.statement svg { width: 55px; height: 55px; color: var(--orange); flex: none; }
.statement blockquote { font-family: Georgia, serif; font-size: clamp(34px, 4vw, 58px); line-height: 1.2; margin: 0; }
.statement em { color: #ff7a32; }

.advantages { padding: 110px clamp(24px, 8vw, 125px); display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.advantages-copy > p:not(.section-kicker) { color: var(--muted); line-height: 1.8; max-width: 490px; margin: 28px 0; }
.primary-btn.dark { background: var(--navy); }
.primary-btn.dark:hover { background: var(--navy-dark); }
.check-list { display: grid; align-content: center; }
.check-list > div { display: flex; align-items: center; gap: 18px; padding: 19px 0; border-bottom: 1px solid #e3e1e5; font-size: 15px; font-weight: 700; }
.check-list span { display: grid; place-items: center; border: 1px solid #f5a274; color: var(--orange); width: 32px; height: 32px; border-radius: 50%; flex: none; }
.security-band { margin: 0 clamp(24px, 5vw, 76px) 80px; background: #f6f2eb; padding: 28px 38px; display: flex; align-items: center; gap: 20px; }
.security-band > svg { color: var(--orange); width: 32px; height: 32px; }
.security-band div { display: flex; flex-direction: column; gap: 5px; }
.security-band strong { color: var(--navy); }
.security-band span { font-size: 13px; color: var(--muted); }

.proposal { margin: 0 clamp(24px, 5vw, 76px) 80px; padding: 58px clamp(30px, 5vw, 70px); background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.proposal > div { max-width: 760px; }
.proposal h2 { color: #fff; font-size: clamp(36px, 3.6vw, 54px); }
.proposal > div > p:last-child { color: #d2d0df; line-height: 1.7; margin: 20px 0 0; }
.primary-btn.light { background: #fff; color: var(--navy); flex: none; }
.primary-btn.light:hover { background: #fff4ed; }

.location { margin: 0 clamp(24px, 5vw, 76px) 80px; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 470px; background: var(--cream); overflow: hidden; }
.location-copy { padding: 64px clamp(32px, 5vw, 76px); align-self: center; }
.location-copy h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.035em; margin: 0; }
.location-copy > p:not(.section-kicker) { color: var(--muted); line-height: 1.8; margin: 25px 0 30px; }
.map-frame { min-height: 470px; background: #e8e4dc; }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 470px; border: 0; filter: saturate(.85) contrast(.96); }

footer { background: var(--navy-dark); color: #fff; padding: 72px clamp(24px, 8vw, 125px) 28px; }
.footer-top { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; align-items: start; }
.footer-top > div:first-child p { max-width: 310px; color: #c2c0cf; line-height: 1.75; margin: 4px 0 0; padding-left: 18px; border-left: 3px solid var(--orange); }
.contact-block .section-kicker { color: #ff7830; }
.contact-block h2 { margin-bottom: 30px; }
.contact-block a, .contact-block > span { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #ceccda; font-size: 14px; }
.contact-block a:hover { color: #fff; }
.contact-block svg { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; color: #77768e; font-size: 11px; }
.footer-bottom span:last-child { color: #bcbbca; }
.footer-bottom a { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.footer-bottom a:hover { color: #ff8a49; }

@media (max-width: 900px) {
  .site-header { height: 76px; padding: 0 20px; }
  .brand img { width: 130px; height: 47px; }
  .site-header nav, .nav-cta { display: none; }
  .mobile-contact { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; }
  .hero { min-height: 720px; }
  .hero-media { background-position: 58% 50%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(22, 21, 53, .95), rgba(34, 32, 70, .48)); }
  .hero-content { padding-top: 82px; }
  .hero h1 { font-size: 60px; }
  .hero-copy { font-size: 17px; }
  .trust-row { gap: 18px; flex-wrap: wrap; margin-top: 52px; }
  .property-note { right: 20px; bottom: 20px; }
  .intro, .advantages, .process { grid-template-columns: 1fr; gap: 35px; padding: 75px 24px; }
  .services { padding: 75px 24px; }
  .section-heading { align-items: start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article + article { border-left: 0; border-top: 1px solid #d6d1c8; padding-left: 0; }
  .statement { padding: 65px 24px; align-items: flex-start; gap: 25px; }
  .statement svg { width: 34px; }
  .security-band { margin: 0 24px 55px; padding: 24px; }
  .proposal { margin: 0 24px 55px; padding: 45px 28px; align-items: flex-start; flex-direction: column; gap: 30px; }
  .location { grid-template-columns: 1fr; margin: 0 24px 55px; }
  .location-copy { padding: 55px 28px; }
  .map-frame, .map-frame iframe { min-height: 360px; }
  footer { padding-top: 58px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-bottom { gap: 20px; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero { min-height: 760px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .trust-row i { display: none; }
  .trust-row { align-items: flex-start; flex-direction: column; }
  .property-note { left: 20px; right: auto; padding: 14px 17px; }
  .property-note strong { font-size: 16px; }
  .statement { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
