:root {
  --navy: #082d4b;
  --navy2: #041d31;
  --gold: #d6aa2d;
  --soft: #f3f7fa;
  --text: #20303d;
  --muted: #687987;
  --white: #fff;
  --green: #1ea65a;
  --shadow: 0 18px 55px rgba(6, 38, 64, .12)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65
}

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

.container {
  width: min(1180px, 92%);
  margin: auto
}

.narrow {
  width: min(820px, 92%)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 5px 24px #0001
}

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

.brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy)
}

.brand b {
  color: var(--gold)
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  margin-right: 8px
}

.nav nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 700
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 28px
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer
}

.btn-gold {
  background: var(--gold);
  color: var(--navy2)
}

.btn-primary {
  background: var(--navy);
  color: #fff
}

.btn-outline {
  border: 1px solid #ffffff88;
  color: #fff
}

.btn-whatsapp {
  background: var(--green);
  color: #fff
}

.hero {
  padding: 92px 0;
  background: linear-gradient(120deg, #041d31f4, #0b4269e8), radial-gradient(circle at right, #d6aa2d55, transparent 40%);
  color: #fff
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 55px;
  align-items: center
}

.hero h1,
.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
  margin: 16px 0
}

.hero p {
  font-size: 19px;
  color: #d8e6ef;
  max-width: 650px
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffe58d
}

.eyebrow.dark,
.section-head span {
  color: #a97f0b
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px
}

.quote-card {
  background: #fff;
  color: var(--text);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 25px 60px #0005
}

.quote-card form {
  display: grid;
  gap: 12px
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d7e0e6;
  border-radius: 11px;
  font: inherit
}

textarea {
  min-height: 105px
}

.stats {
  margin-top: -34px;
  position: relative
}

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

.stats-grid div {
  padding: 25px;
  text-align: center;
  border-right: 1px solid #e6edf1
}

.stats b {
  display: block;
  font-size: 30px;
  color: var(--navy)
}

.stats span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700
}

.section {
  padding: 85px 0
}

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

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px
}

.section-head h2,
.split h2 {
  font-size: clamp(31px, 4vw, 45px);
  line-height: 1.15;
  color: var(--navy);
  margin: 8px 0
}

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

.card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px #082d4b12;
  border: 1px solid #e3ebf0;
  display: flex;
  flex-direction: column
}

.card .icon {
  font-size: 30px
}

.card h3 {
  color: var(--navy)
}

.card p {
  color: var(--muted);
  flex: 1
}

.card a {
  color: #9b7200;
  font-weight: 900
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center
}

.sobre-bg {
  background:
    linear-gradient(to right, rgba(255,255,255,.15) 0%, rgba(255,255,255,.75) 42%, #fff 56%),
    url('/img/sobre-corretora.png');

  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.visual-image {
  min-height: 470px;
  border-radius: 28px;
  background:
    linear-gradient(to right, rgba(255,255,255,0) 45%, #fff 100%),
    url('/img/sobre-corretora.png');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.checks {
  padding: 0;
  list-style: none
}

.checks li {
  margin: 11px 0
}

.checks li:before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px
}

.partners {
  background: #071f33;
  color: #fff
}

.partners .section-head h2 {
  color: #fff
}

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

.partner-card {
  padding: 30px;
  border: 1px solid #ffffff21;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff12, #ffffff06);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.partner-card span {
  color: var(--gold);
  font-size: 12px
}

.partner-card strong {
  font-size: 22px;
  margin: 8px 0
}

.partner-card small {
  color: #b8c7d2
}

.blog-panel {
  display: grid;
  gap: 14px
}

.blog-panel div {
  padding: 22px;
  border-left: 5px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 12px
}

.page-hero {
  padding: 78px 0;
  background: linear-gradient(120deg, var(--navy2), var(--navy));
  color: #fff
}

.page-hero p {
  font-size: 19px;
  color: #d7e5ee
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px
}

.contact-box {
  background: var(--soft);
  padding: 28px;
  border-radius: 20px;
  height: max-content
}

.blog-hero {
  text-align: center
}

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

.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.post-card img,
.post-placeholder {
  height: 210px;
  width: 100%;
  object-fit: cover
}

.post-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: #fff;
  font-size: 26px;
  font-weight: 900
}

.post-body {
  padding: 24px
}

.post-body small,
.article-head small {
  color: #9b7200;
  font-weight: 800
}

.post-body h2 {
  font-size: 22px;
  color: var(--navy)
}

.article-head {
  padding: 75px 0 35px;
  background: var(--soft)
}

.article-head h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: var(--navy)
}

.article-cover {
  margin-top: 35px;
  border-radius: 22px;
  max-height: 480px;
  width: 100%;
  object-fit: cover
}

.article-body {
  padding: 48px 0 80px;
  font-size: 18px
}

.article-body h2,
.article-body h3 {
  color: var(--navy)
}

.article-cta {
  margin-top: 50px;
  padding: 28px;
  background: var(--soft);
  border-radius: 18px
}

footer {
  background: var(--navy2);
  color: #c8d5de;
  padding: 55px 0 25px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px
}

.footer-grid a {
  display: block;
  margin: 6px 0
}

.footer-copy {
  border-top: 1px solid #ffffff20;
  padding-top: 20px;
  margin-top: 25px
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow)
}

@media(max-width:900px) {
  .menu-btn {
    display: block
  }

  .nav nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 4%;
    flex-direction: column;
    align-items: stretch
  }

  .nav nav.open {
    display: flex
  }

  .hero-grid,
  .split,
  .detail-grid {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .partner-showcase,
  .post-grid {
    grid-template-columns: 1fr 1fr
  }

  .sobre-bg {
    background: #fff;
    min-height: auto;
  }

  .sobre-bg .split {
    grid-template-columns: 1fr;
  }

  .sobre-bg .split > div:first-child {
    display: none;
  }
}

@media(max-width:600px) {

  .cards,
  .partner-showcase,
  .post-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-actions {
    flex-direction: column
  }

  .section {
    padding: 60px 0
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px
}

.blog-actions {
  margin-top: 30px;
  text-align: center
}

.brand-logo {
  max-height: 62px;
  max-width: 260px
}

.post-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.post-link:hover .read-more {
    text-decoration: underline;
}