:root {
  --navy: #102a43;
  --navy-2: #173b5b;
  --gold: #c7a052;
  --gold-2: #e3c577;
  --ink: #1d2939;
  --muted: #667085;
  --line: #e4e7ec;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 86px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  max-width: 210px;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-weight: 650;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-size: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(199, 160, 82, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-2);
  box-shadow: 0 14px 28px rgba(199, 160, 82, 0.26);
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.button.outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 28, 45, 0.92), rgba(9, 28, 45, 0.72) 48%, rgba(9, 28, 45, 0.28)),
    var(--hero-image) center/cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  padding: 86px 0 116px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  max-width: 860px;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

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

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.stat strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section.dark .section-head h2 {
  color: var(--white);
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

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

.clean-image-panel {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: 18px;
  background: linear-gradient(135deg, #071827, #102a43);
}

.clean-image-panel img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 560px;
  object-fit: contain;
  border-radius: 6px;
}

.copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.copy p {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(199, 160, 82, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.07);
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.22), rgba(16, 42, 67, 0.9)), var(--bg) center/cover;
  overflow: hidden;
}

.audience h3 {
  font-size: 1.45rem;
}

.audience p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 30px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.step h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.74)),
    url("https://fhassessoriaimobiliaria.com.br/wp-content/uploads/2026/05/8d0f098e693598ffa5731a6808fdaf2bd1dcbd27.jpg") center/cover;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-box,
.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  display: block;
  color: var(--navy);
}

.contact-item span,
.contact-item a {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 750;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.form textarea {
  min-height: 128px;
  resize: vertical;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0b1f33;
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin: 0 0 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.copyright {
  padding-top: 24px;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1fae63;
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 18px 34px rgba(31, 174, 99, 0.35);
}

.page-hero {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.66)),
    var(--page-image) center/cover;
}

.page-hero h1 {
  max-width: 800px;
}

.page-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .stats-grid,
  .cards,
  .audience-grid,
  .process,
  .footer-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 70px 0 105px;
  }

  .section {
    padding: 68px 0;
  }

  .brand span {
    max-width: 160px;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    height: 52px;
    min-width: 52px;
    font-size: 0.9rem;
  }
}
