:root {
  --verde: #043730;
  --dourado: #C9A24D;
  --branco: #ffffff;
  --cinza: #f4f6f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--branco);
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* =========================
   TOP BAR SOCIAL + CRECI
========================= */

.top-bar {
  background: #C9A24D;
  height: 34px;
  font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* CRECI */
.top-creci {
  color: #032b25;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* SOCIAL */
.top-social {
  display: flex;
  gap: 14px;
}

.top-social a {
  color: #032b25;
  font-size: 15px;
  transition: 0.3s ease;
}

.top-social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .top-bar {
    font-size: 12px;
  }

  .top-social a {
    font-size: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-creci {
    width: 100%;
    font-size: 11.5px;
  }

  .top-social {
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .top-social a {
    font-size: 16px;
  }
}

/* =========================
   NAVBAR
========================= */

.nav {
  background: #032b25;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
}

/* LOGO */
.logo img {
  height: 90px;
}

/* LINKS DESKTOP */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #C9A24D;
}

/* BOTÃO NAV */
.btn-nav {
  background: #C9A24D;
  color: #043730 !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #b8923f;
}

/* =========================
   BOTÃO HAMBÚRGUER
========================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #C9A24D;
  border-radius: 3px;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  height: calc(100vh - 124px);
  background: url("img/foto-imobiliaria-1.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 55, 48, 0.65),
    rgba(4, 55, 48, 0.45)
  );
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #ffffff;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* =========================
   BOTÕES HERO
========================= */

.hero-buttons {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--dourado);
  color: var(--verde-escuro);

  padding: 16px 36px;
  border-radius: 8px;

  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-hero img {
  width: 18px;
  height: 18px;
}

.btn-hero:hover {
  background: #b8923f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1024px) {
  .hero {
    height: calc(100vh - 110px);
    padding: 0 20px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero p {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 120px 20px 100px;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    gap: 16px;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .hero {
    padding: 110px 16px 90px;
    min-height: 75vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 14px 0;
  }
}
/* =========================
   DESTAQUES
========================= */

.destaques {
  padding: 100px 0;
  background: white;
  color: #043730;
}

.destaques .container {
  text-align: center;
}

/* TAG */
.tag {
  display: inline-block;
  background: var(--dourado);
  color: var(--verde);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 auto; /* garante centralização */
}

/* TÍTULO */
.destaques h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 14px 0 8px;
  font-weight: 700;
}

/* SUBTÍTULO */
.sub {
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 48px; /* 🔥 centraliza horizontalmente */
  line-height: 1.6;
}
/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1024px) {
  .destaques {
    padding: 80px 0;
  }

  .sub {
    margin-bottom: 40px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .destaques {
    padding: 70px 20px;
  }

  .destaques h2 {
    font-size: 2rem;
  }

  .sub {
    font-size: 0.95rem;
    max-width: 480px;
    margin-bottom: 36px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .destaques {
    padding: 60px 16px;
  }

  .tag {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .destaques h2 {
    font-size: 1.6rem;
    margin: 12px 0 6px;
  }

  .sub {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 32px;
  }
}
/* =========================
   RESIDENCIAIS
========================= */

.residenciais {
  padding: 100px 0;
  background: #f5f7fa;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
  position: relative;
  margin-top: 40px;
}

.cards {
  display: flex;
  gap: 28px;
  padding: 10px 4px 30px;

  overflow: hidden;
  scroll-behavior: smooth;
  pointer-events: none;
}

/* =========================
   CARD
========================= */

.card {
  min-width: 320px;
  max-width: 320px;
  background: var(--branco);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;

  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* BADGE */
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--verde);
  color: var(--branco);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
}

/* CORPO */
.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.card-body p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 18px;
}

/* BOTÃO */
.btn-outline {
  background: var(--verde);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* REATIVA INTERAÇÃO */
.card * {
  pointer-events: auto;
}

/* =========================
   SETAS
========================= */

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: var(--dourado);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.left {
  left: -50px;
}

.right {
  right: -50px;
}

/* =========================
   CTA FINAL
========================= */

.residenciais-cta {
  margin-top: 30px;
  padding:60px 8px;

  text-align: center;

  background: white;
}

.residenciais-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #043730;
}

.residenciais-cta p {
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: 0.9;
  color: #222;
}
/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1024px) {
  .residenciais {
    padding: 80px 0;
  }

  .arrow.left {
    left: -30px;
  }

  .arrow.right {
    right: -30px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .residenciais {
    padding: 70px 0;
  }

  .cards {
    gap: 20px;
    padding: 10px 16px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    pointer-events: auto;
  }

  .card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
  }

  .card img {
    height: 180px;
  }

  .arrow {
    display: none;
  }

  .residenciais-cta {
    padding: 50px 16px;
  }

  .residenciais-cta h2 {
    font-size: 1.6rem;
  }

  .residenciais-cta p {
    font-size: 0.95rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .residenciais {
    padding: 60px 0;
  }

  .cards {
    gap: 16px;
    padding: 10px 12px 24px;
  }

  .card {
    min-width: 260px;
    max-width: 260px;
    border-radius: 14px;
  }

  .card img {
    height: 160px;
  }

  .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .card-body {
    padding: 18px;
  }

  .card-body h3 {
    font-size: 1rem;
  }

  .card-body p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .residenciais-cta {
    padding: 44px 14px;
  }

  .residenciais-cta h2 {
    font-size: 1.4rem;
  }

  .residenciais-cta p {
    font-size: 0.9rem;
  }
}

/* =========================
   IMÓVEIS À VENDA
========================= */

.imoveis-venda {
  padding: 100px 0;
  background: var(--verde);
  text-align: center;
}

/* TÍTULOS */
.imoveis-venda h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 14px 0 8px;
  font-weight: 700;
  color: white;
}

.imoveis-venda .sub {
  max-width: 520px;
  margin: 0 auto 48px;
  opacity: 0.8;
  line-height: 1.5;
  color: white;
}

/* GRID */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.imovel-card {
  background: var(--branco); /* fundo branco */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.imovel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

/* IMAGEM */
.imovel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}/* CARD */
.imovel-card {
  background: var(--branco); /* fundo branco */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

.imovel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

/* IMAGEM */
.imovel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* IMAGEM */
.imovel-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* CONTEÚDO */
.imovel-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imovel-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

/* BOTÃO */
.btn-outline {
  align-self: flex-start;
  padding: 10px 22px;
  border: 2px solid;
  color: white;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #C9A24D;
  color: var(--branco);
}

/* CTA FINAL */
.cta-imoveis {
  margin-top: 64px;
}

.cta-imoveis .btn-primary {
  padding: 16px 38px;
  font-size: 0.95rem;
}

/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1024px) {
  .imoveis-venda {
    padding: 80px 20px;
  }

  .imoveis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .imoveis-venda .sub {
    margin-bottom: 40px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .imoveis-venda {
    padding: 70px 16px;
  }

  .imoveis-venda h2 {
    font-size: 2rem;
  }

  .imoveis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .imovel-card img {
    height: 200px;
  }

  .imovel-body {
    padding: 20px;
  }

  .btn-outline {
    align-self: stretch;
    text-align: center;
    padding: 12px 0;
  }

  .cta-imoveis {
    margin-top: 48px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .imoveis-venda {
    padding: 60px 14px;
  }

  .imoveis-venda h2 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .imoveis-venda .sub {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 36px;
  }

  .imovel-card {
    border-radius: 14px;
  }

  .imovel-card img {
    height: 180px;
  }

  .imovel-body h3 {
    font-size: 1rem;
  }

  .btn-outline {
    font-size: 0.8rem;
  }

  .cta-imoveis .btn-primary {
    width: 100%;
    padding: 14px 0;
  }
}
/* =====================================
   ENTRE EM CONTATO – IMOBILIÁRIA
===================================== */

.contato-imobiliaria {
  position: relative;
  padding: 120px 20px;
  background: url("img/foto-imobiliaria.png") center / cover no-repeat;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* OVERLAY VERDE COM DEGRADÊ – MAIS CLARO */
.contato-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(4, 55, 48, 0.65) 0%,
    rgba(4, 55, 48, 0.45) 40%,
    rgba(4, 55, 48, 0.30) 65%,
    rgba(4, 55, 48, 0.15) 100%
  );
}
/* CONTEÚDO */
.contato-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 2;
}

/* TAG */
.contato-imobiliaria .tag {
  display: inline-block;
  background: var(--dourado);
  color: var(--verde);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* TÍTULO */
.contato-imobiliaria h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.2;
  color: white;
}

/* TEXTO */
.contato-imobiliaria p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 36px;
  color: white;
}

/* BOTÃO */
.contato-imobiliaria .btn-primary {
  padding: 16px 40px;
  font-size: 0.95rem;
  border-radius: 6px;
}
/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1024px) {
  .contato-imobiliaria {
    padding: 100px 20px;
  }

  .contato-content {
    max-width: 640px;
  }

  .contato-imobiliaria p {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .contato-imobiliaria {
    padding: 90px 16px;
  }

  .contato-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 55, 48, 0.65) 0%,
      rgba(4, 55, 48, 0.45) 50%,
      rgba(4, 55, 48, 0.25) 100%
    );
  }

  .contato-content {
    max-width: 560px;
  }

  .contato-imobiliaria h2 {
    font-size: 2.2rem;
  }

  .contato-imobiliaria p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contato-imobiliaria .btn-primary {
    padding: 14px 34px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .contato-imobiliaria {
    padding: 70px 14px;
  }

  .contato-content {
    max-width: 100%;
  }

  .contato-imobiliaria .tag {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .contato-imobiliaria h2 {
    font-size: 1.7rem;
    margin: 14px 0;
  }

  .contato-imobiliaria p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .contato-imobiliaria .btn-primary {
    width: 100%;
    padding: 14px 0;
    font-size: 0.9rem;
  }
}

.imobiliaria-footer {
  background: #043730;
  padding: 70px 20px 30px;
  color: #cfd6e0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 18px;
}

.footer-col h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col a {
  color: #cfd6e0;
  text-decoration: none;
}

.footer-col a:hover {
  color: #C9A24D;
}

/* SOCIAL */
.social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social svg {
  width: 22px;
  height: 22px;
  color: #C9A24D;
}
.social a:hover svg {
  color: var(--branco);
}

/* CONTATO */
.contact li {
  display: flex;
  gap: 12px;
}

.contact svg {
  width: 18px;
  height: 18px;
  color: #C9A24D;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a {
  color: #C9A24D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* =========================
   NOTEBOOK / TABLET GRANDE
========================= */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .imobiliaria-footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  /* SOCIAL CENTRALIZADO */
  .social {
    justify-content: center;
  }

  /* CONTATO CENTRALIZADO */
  .contact li {
    justify-content: center;
  }

  /* FOOTER BOTTOM EMPILHADO */
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .imobiliaria-footer {
    padding: 50px 16px 26px;
  }

  .footer-logo {
    max-width: 150px;
  }

  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .footer-col a {
    font-size: 14px;
  }

  .social a {
    width: 34px;
    height: 34px;
  }

  .social svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
/* =========================
   BOTÕES – PADRÃO GLOBAL
========================= */

.btn-primary,
.btn-outline,
.btn-hero,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* DOURADO – BOTÃO PRINCIPAL */
.btn-primary,
.btn-hero,
.btn-nav {
  background: var(--dourado);
  color: var(--verde-escuro);
  border: none;
}

.btn-primary:hover,
.btn-hero:hover,
.btn-nav:hover {
  background: #e0bb68;
  transform: translateY(-2px);
}

/* VERDE – BOTÃO SECUNDÁRIO */
.btn-outline {
  background: #032b25;
  color: #fff;
  border: none;
}

.btn-outline:hover {
  background: #0f5a4f;
  transform: translateY(-2px);
}

/* HERO */
.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  justify-content: center;
  flex-wrap: wrap;
}

/* NAV */
.btn-nav {
  padding: 12px 26px;
  font-size: 0.9rem;
}
/* =====================================
   HERO CAROUSEL RESIDENCIAIS (ISOLADO)
===================================== */

.res-hero-carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* TRACK */
.res-hero-track {
  width: 100%;
  height: 100%;
  position: relative;
}

/* SLIDE */
.res-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.res-hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* OVERLAY */
/* OVERLAY coringa */
.res-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* cor e transparência do overlay */
  z-index: 1;
}

/* CONTEÚDO */
.res-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: white;
}

.res-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  max-width: 650px;
color:#032b25;
}

.res-hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  opacity: 0.95;
}

/* BOTÃO */
.res-hero-content .btn-primary {
  width: fit-content;
  margin-top: 12px;
}

/* SETAS */
.res-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease, transform 0.3s ease;
}

.res-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.res-hero-arrow.res-left {
  left: 24px;
}

.res-hero-arrow.res-right {
  right: 24px;
}
/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .res-hero-carousel {
    height: 80vh;
  }

  .res-hero-content h1 {
    font-size: 2.6rem;
    max-width: 600px;
  }

  .res-hero-content p {
    font-size: 1rem;
    max-width: 520px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .res-hero-carousel {
    height: 70vh;
  }

  .res-hero-content {
    padding: 0 20px;
    gap: 16px;
  }

  .res-hero-content h1 {
    font-size: 2.1rem;
    max-width: 100%;
  }

  .res-hero-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .res-hero-content .btn-primary {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  /* SETAS MENORES */
  .res-hero-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .res-hero-arrow.res-left {
    left: 14px;
  }

  .res-hero-arrow.res-right {
    right: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .res-hero-carousel {
    height: 92vh;
  }

  .res-hero-content {
    justify-content: flex-end;
    padding-bottom: 48px;
  }

  .res-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .res-hero-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .res-hero-content .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }

  /* ESCONDE SETAS NO MOBILE */
  .res-hero-arrow {
    display: none;
  }
}
/* ===============================
   LISTA DE RESIDENCIAIS
================================ */

.lista-residenciais {
  padding: 120px 0;
  background: #f7f9f8;
}

/* CONTAINER */
.lista-residenciais .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ITEM */
.res-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

/* ALTERNAR LADO */
.res-item.invert {
  direction: rtl;
}

.res-item.invert * {
  direction: ltr;
}

/* IMAGEM */
.res-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* CONTEÚDO */
.res-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TÍTULO */
.res-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #043730;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* TEXTO */
.res-content p {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* AÇÕES */
.res-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* BOTÃO PRINCIPAL */
.res-actions .btn-primary {
  background: #043730;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.res-actions .btn-primary:hover {
  background: #06665a;
  transform: translateY(-2px);
}

/* BOTÃO OUTLINE */
.res-actions .btn-outline {
  border: 2px solid #C9A24D;
  color: #043730;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.res-actions .btn-outline:hover {
  background: #C9A24D;
  color: #ffffff;
  transform: translateY(-2px);
}


/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .res-item {
    gap: 40px;
    margin-bottom: 100px;
  }

  .res-item img {
    height: 380px;
  }

  .res-content h2 {
    font-size: 30px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .res-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 90px;
  }

  /* REMOVE INVERSÃO NO MOBILE */
  .res-item.invert {
    direction: ltr;
  }

  .res-item img {
    height: 360px;
  }

  .res-content {
    text-align: center;
    align-items: center;
  }

  .res-content p {
    max-width: 100%;
  }

  .res-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .lista-residenciais {
    padding: 80px 0;
  }

  .res-item {
    gap: 28px;
    margin-bottom: 70px;
  }

  .res-item img {
    height: 260px;
    border-radius: 16px;
  }

  .res-content h2 {
    font-size: 1.6rem;
  }

  .res-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .res-actions {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .res-actions a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }
}
/* ===============================
   CTA CORRETOR
================================ */

.cta-corretor {
  position: relative;
  padding: 120px 0;
  background: 
    linear-gradient(rgba(4,55,48,0.85), rgba(4,55,48,0.85)),
    url("https://images.pexels.com/photos/276583/pexels-photo-276583.jpeg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.cta-corretor .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TÍTULO */
.cta-corretor h2 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* TEXTO */
.cta-corretor p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* BOTÃO */
.cta-corretor .btn-primary {
  background: #c8a24d; /* dourado */
  color: #043730;
  padding: 16px 42px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-corretor .btn-primary:hover {
  background: #e1c46a;
  transform: translateY(-2px);
}

/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .cta-corretor {
    padding: 100px 0;
  }

  .cta-corretor h2 {
    font-size: 36px;
  }

  .cta-corretor p {
    font-size: 17px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .cta-corretor {
    padding: 90px 0;
  }

  .cta-corretor h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .cta-corretor p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .cta-corretor .btn-primary {
    padding: 15px 38px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .cta-corretor {
    padding: 70px 20px;
  }

  .cta-corretor h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .cta-corretor p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .cta-corretor .btn-primary {
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
  }
}

/* =================================================
   PÁGINA IMÓVEIS À VENDA
================================================= */

.imoveis-venda-page {
  background: #f5f6f7;
  padding-bottom: 60px;
}

/* ================= HEADER ================= */

.imoveis-header {
  background: #ffffff;
  padding: 45px 0 35px;
  border-bottom: 1px solid #e4e4e4;
}

.imoveis-header h1 {
  font-size: 2.3rem;
  font-weight: 600;
  color: #222;
}

.imoveis-header p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #666;
}


/* ================= LISTAGEM ================= */

.imoveis-lista {
  padding-top: 45px;
}

.grid-imoveis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ================= CARD ================= */

.imovel-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  transition: 0.3s;
}

.imovel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.imovel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ================= CONTEÚDO ================= */

.imovel-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.imovel-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
}

.imovel-body p {
  font-size: 0.85rem;
  color: #777;
  margin: 4px 0 10px;
}

.imovel-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.imovel-body ul li {
  font-size: 0.82rem;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  color: #555;
}

.imovel-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1f7a4f;
  font-weight: bold;
}

.imovel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
}

.imovel-footer .valor {
  font-size: 1rem;
  font-weight: 700;
  color: #043730;
}

/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .grid-imoveis {
    grid-template-columns: repeat(2, 1fr);
  }

  .imoveis-header h1 {
    font-size: 2.1rem;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .imoveis-header {
    padding: 35px 0 30px;
    text-align: center;
  }

  .imoveis-header h1 {
    font-size: 1.9rem;
  }

  .imoveis-header p {
    font-size: 0.9rem;
  }

  .grid-imoveis {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .imovel-card img {
    height: 170px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 560px) {
  .imoveis-header {
    padding: 30px 0 26px;
  }

  .imoveis-header h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .imoveis-header p {
    font-size: 0.88rem;
  }

  .grid-imoveis {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .imovel-card img {
    height: 200px;
  }

  .imovel-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .imovel-footer .valor {
    font-size: 1.05rem;
  }
}


/* ===== TÍTULOS PADRÃO ===== */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #043730;
  margin-bottom: 36px;
}

.section-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.res-hero {
  position: relative;
  height: 65vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.res-hero-content {
  position: relative;
  z-index: 2;
}

.res-hero-content h1 {
  color: #fff;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 700;
}

/* ===== GALERIA ===== */
.res-galeria {
  padding: 100px 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.galeria-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ===== BLOCO FLEX ===== */
.res-bloco {
  padding: 110px 0;
}

.res-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.res-bloco.invert .res-flex {
  direction: rtl;
}

.res-bloco.invert * {
  direction: ltr;
}

.res-img img,
.res-img-local img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.15);
}

.res-text h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #043730;
}

.res-text ul {
  list-style: none;
}

.res-text li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.res-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C9A24D;
  font-weight: bold;
}


/* ===== LOCALIZAÇÃO ===== */
.res-localizacao {
  padding: 100px 0;
}

.res-img-local {
  margin-top: 36px;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 14px;
}

/* BOTÃO FECHAR */
.lightbox::after {
  content: "✕";
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* ===== AJUSTES PÁGINA RESIDENCIAL ===== */

/* Linha verde entre seções */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #043730,
    transparent
  );
}

/* Detalhe verde abaixo dos títulos */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #043730;
  margin: 12px auto 0;
}


/* Hover bonito na galeria */
.galeria-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(4,55,48,0.25);
}

/* Check dourado nas listas */
.res-text li,
.destaques-lista li {
  position: relative;
  padding-left: 18px;
}

.res-text li::before,
.destaques-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C9A24D;
  font-weight: bold;
}
.res-sobre,
.res-destaques,
.res-localizacao {
  padding: 120px 0;
}
.res-sobre .section-text {
  max-width: 760px;
  font-size: 1.1rem;
  color: #333;
}
/* diminui a imagem */
.res-img-local img {
  max-width: 820px;
  margin: 0 auto;
  display: block;
}

/* remove excesso antes do contato */
.res-localizacao {
  padding-bottom: 60px;
}

/* remove divisor antes do contato */
.res-localizacao + .section-divider {
  display: none;
}
/* ===== DIFERENCIAIS – LISTA EM CARDS FINOS ===== */

.res-destaques {
  background: #043730;
  padding: 120px 0;
}

.res-destaques .section-title {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

.res-destaques .section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: #C9A24D;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* CONTAINER DOS CARDS */
.destaques-cards {
  max-width: 560px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CARD */
.destaque-card {
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 10px;

  display: flex;
  align-items: center;
  gap: 14px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

/* ÍCONE */
.destaque-card i {
  font-size: 18px;
  color: #C9A24D;
  flex-shrink: 0;
}

/* TEXTO */
.destaque-card h3 {
  font-size: 0.95rem;
  color: #043730;
  font-weight: 500;
  margin: 0;
}

/* REMOVE TEXTO EXTRA SE EXISTIR */
.destaque-card p {
  display: none;
}

/* HOVER SUTIL */
.destaque-card:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .res-flex {
    gap: 40px;
  }

  .res-item,
  .res-bloco,
  .res-sobre,
  .res-destaques,
  .res-localizacao {
    padding: 100px 0;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 28px;
  }

  .section-text {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .res-hero {
    height: 55vh;
  }

  .res-hero-content h1 {
    font-size: 2.2rem;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .galeria-grid img {
    height: 200px;
  }

  .res-flex {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .res-bloco.invert .res-flex {
    direction: ltr;
  }

  .res-text ul {
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
  }

  .res-text h2 {
    font-size: 1.7rem;
  }

  .res-img-local img {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 520px) {
  .section-title {
    font-size: 1.45rem;
  }

  .section-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .res-hero {
    height: 50vh;
    padding: 0 16px;
  }

  .res-hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .res-galeria,
  .res-bloco,
  .res-sobre,
  .res-destaques,
  .res-localizacao {
    padding: 80px 0;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid img {
    height: 220px;
  }

  .res-text h2 {
    font-size: 1.5rem;
  }

  .res-text li {
    font-size: 0.9rem;
  }

  .destaques-cards {
    padding: 0 16px;
  }

  .destaque-card {
    padding: 14px 18px;
  }

  .lightbox::after {
    top: 18px;
    right: 18px;
    font-size: 26px;
  }
}

/* =================================================
   SOBRE NÓS – CSS ISOLADO
================================================= */

.sobre-body section {
  padding: 90px 0;
}

.sobre-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* TÍTULOS */
.sobre-body h1,
.sobre-body h2,
.sobre-body h3 {
  color: #043730;
}

.sobre-body h1::after,
.sobre-body h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #c9a24d, #e5cc86);
  margin-top: 14px;
  border-radius: 4px;
}

.sobre-body h2 {
  text-align: center;
}

.sobre-body h2::after {
  margin: 14px auto 0;
}

/* HISTÓRIA */
.sobre-historia {
  background: linear-gradient(180deg, #ffffff, #f7f8f6);
}

.sobre-historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre-historia img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* MISSÃO VISÃO VALORES */
.sobre-mvv {
  background: #f7f8f6;
}

.sobre-mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.sobre-mvv-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  border-top: 4px solid #c9a24d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

/* SERVIÇOS */
.sobre-servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
}

.sobre-servicos-grid li {
  background: linear-gradient(180deg, #f7f8f6, #ffffff);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
  border-left: 5px solid #c9a24d;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
/* NOSSO TIME */
.sobre-equipe {
  padding: 80px 20px;
  background: #f7f7f7;
}

.sobre-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sobre-equipe h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #043730;
}

/* FOTO DO TIME */
.time-foto {
  max-width: 900px;
  margin: 0 auto;
}

.time-foto img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: block;
}

/* NOMES */
.time-nomes {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #043730;
}


/* =================================================
   AJUSTES VISUAIS – MAIS VERDE E ORGANIZAÇÃO
================================================= */

/* MAIS ESPAÇO ENTRE AS SEÇÕES */
.sobre-body section {
  padding: 120px 0;
}

/* FUNDO VERDE SUAVE INTERCALADO */
.sobre-mvv {
  background: linear-gradient(
    180deg,
    #eaf3f1,
    #f7f8f6
  );
}

.sobre-servicos {
  background: linear-gradient(
    180deg,
    #ffffff,
    #eaf3f1
  );
}

.sobre-equipe {
  background: linear-gradient(
    180deg,
    #eaf3f1,
    #ffffff
  );
}

/* HISTÓRIA – MAIS VERDE E RESPIRO */
.sobre-historia {
  background: linear-gradient(
    180deg,
    #ffffff,
    #eaf3f1
  );
}

.sobre-historia p {
  margin-top: 28px;
  max-width: 520px;
  font-size: 1.08rem;
}

/* TÍTULOS MAIS DESTACADOS */
.sobre-body h1,
.sobre-body h2 {
  margin-bottom: 40px;
}

.sobre-body h3 {
  margin-bottom: 18px;
}

/* LINHA VERDE DECORATIVA ABAIXO DOS TÍTULOS */
.sobre-body h1::after,
.sobre-body h2::after {
  width: 90px;
  height: 5px;
  background: linear-gradient(
    90deg,
    #043730,
    #c9a24d
  );
}

/* CARDS MVV – MAIS PRESENÇA DO VERDE */
.sobre-mvv-item {
  border-top: 5px solid #043730;
}

.sobre-mvv-item p {
  margin-top: 14px;
}
/* ================= SERVIÇOS GRID 3x2 ================= */

.sobre-servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-servicos-grid li {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-top: 4px solid #043730;
  transition: transform 0.3s ease;
}

.sobre-servicos-grid li:hover {
  transform: translateY(-6px);
}



/* EQUIPE – MAIS ESPAÇO */
.sobre-equipe-grid {
  margin-top: 70px;
}

.sobre-membro {
  padding: 32px;
}

.sobre-membro h4 {
  margin-top: 12px;
}

/* CONTAINER – MAIS RESPIRO LATERAL */
.sobre-container {
  padding-left: 10px;
  padding-right: 10px;
}


/* ================= CTA CONVERSÃO ================= */

.sobre-cta {
  background: linear-gradient(
    135deg,
    #043730,
    #065f4a
  );
  padding: 120px 0;
  text-align: center;
}

.sobre-cta h2 {
  color: #ffffff;
  margin-bottom: 18px;
}

.sobre-cta p {
  color: #e2f1ec;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.btn-sobre-cta {
  display: inline-block;
  padding: 18px 48px;
  background: #c9a24d;
  color: #043730;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sobre-cta:hover {
  background: #b8913f;
  transform: translateY(-3px);
}
/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .sobre-historia-grid {
    gap: 40px;
  }

  .sobre-servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-body section {
    padding: 100px 0;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .sobre-historia-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-historia p {
    margin: 24px auto 0;
  }

  .sobre-body h1,
  .sobre-body h2 {
    font-size: 1.8rem;
  }

  .sobre-mvv-grid {
    gap: 24px;
  }

  .sobre-servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sobre-equipe h2 {
    font-size: 1.8rem;
  }

  .time-nomes {
    font-size: 16px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 520px) {
  .sobre-body section {
    padding: 80px 0;
  }

  .sobre-container {
    width: 100%;
    padding: 0 16px;
  }

  .sobre-body h1,
  .sobre-body h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .sobre-body h1::after,
  .sobre-body h2::after {
    width: 60px;
    height: 3px;
  }

  .sobre-historia img {
    border-radius: 14px;
  }

  .sobre-historia p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .sobre-mvv-item {
    padding: 28px 22px;
  }

  .sobre-servicos-grid {
    grid-template-columns: 1fr;
  }

  .sobre-servicos-grid li {
    padding: 26px 22px;
  }

  .sobre-equipe {
    padding: 70px 16px;
  }

  .sobre-equipe h2 {
    font-size: 1.6rem;
  }

  .time-nomes {
    font-size: 15px;
  }

  .sobre-cta {
    padding: 90px 0;
  }

  .sobre-cta p {
    font-size: 0.95rem;
  }

  .btn-sobre-cta {
    padding: 16px 36px;
    font-size: 0.95rem;
  }
}
.hero-valor {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

/* VALOR */
.hero-preco {
  font-size: 34px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}

/* BLOCO DO BOTÃO */
.btn-hero-corretor {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;

  background: #d4af37;
  color: #ffffff;
  border: 2px solid #d4af37;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* TEXTO ACIMA DO BOTÃO */
.hero-preco-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.75);
}

/* HOVER */
.btn-hero-corretor:hover {
  background: #d4af37;
  color: #043730;
  transform: translateY(-2px);
}
/* =========================
   NOTEBOOK / TELAS MÉDIAS
========================= */
@media (max-width: 1200px) {
  .hero-preco {
    font-size: 30px;
  }

  .btn-hero-corretor {
    padding: 14px 22px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .hero-valor {
    align-items: flex-start;
    gap: 20px;
  }

  .hero-preco {
    font-size: 26px;
  }

  .btn-hero-corretor {
    padding: 12px 20px;
  }

  .hero-preco-label {
    font-size: 11px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 520px) {
  .hero-valor {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-preco {
    font-size: 22px;
  }

  .btn-hero-corretor {
    width: 100%;
    align-items: center;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-preco-label {
    font-size: 10px;
  }
}

/* =========================
   MOBILE MUITO PEQUENO
========================= */
@media (max-width: 360px) {
  .hero-preco {
    font-size: 20px;
  }

  .btn-hero-corretor {
    padding: 12px 14px;
  }
}

/* ================= CONTATO IMOBILIÁRIA ================= */

.contato-imob-page {
  background: #f6f7f8;
}

/* HERO */
.contato-imob-hero {
  background: linear-gradient(
    rgba(4, 55, 48, 0.85),
    rgba(4, 55, 48, 0.85)
  ),
  url("img/hero-contato.jpg") center / cover no-repeat;
  color: #ffffff;
  padding: 100px 20px 90px;
  text-align: center;
}

.contato-imob-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #C9A24D;
  font-weight: 600;
}

.contato-imob-hero h1 {
  font-size: 42px;
  margin: 16px 0;
}

.contato-imob-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

/* CONTAINER */
.contato-imob-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID DOS CARDS */
.contato-imob-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: -60px;
  padding: 0 20px 80px;
}

/* CARD BASE */
.contato-imob-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ================= CARD INFO ================= */

.contato-imob-card-info h2 {
  font-size: 22px;
  margin-bottom: 28px;
  color: #043730;
  text-align: center;
}

.contato-imob-card-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contato-imob-card-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contato-imob-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201,162,77,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-imob-icon svg {
  width: 22px;
  height: 22px;
  fill: #C9A24D;
}

.contato-imob-card-info strong {
  display: block;
  font-size: 15px;
  color: #043730;
  margin-bottom: 4px;
}

.contato-imob-card-info p,
.contato-imob-card-info a {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.contato-imob-card-info a:hover {
  color: #C9A24D;
}

/* ================= FORM ================= */

.contato-imob-card-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-imob-card-form label {
  font-size: 14px;
  font-weight: 600;
  color: #043730;
}

.contato-imob-card-form input,
.contato-imob-card-form textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.contato-imob-card-form input:focus,
.contato-imob-card-form textarea:focus {
  outline: none;
  border-color: #C9A24D;
}

.contato-imob-card-form button {
  margin-top: 10px;
  background: #043730;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contato-imob-card-form button:hover {
  background: #C9A24D;
  color: #043730;
}

.contato-imob-card-form small {
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* ================= MAPA ================= */

.contato-imob-card-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 14px;
  border: none;
}


.res-galeria {
  padding: 80px 20px; /* margem lateral da seção */
}

.res-galeria .container {
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 por linha */
  gap: 20px;
}

.galeria-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}

/* CTA RESIDENCIAIS */
.cta-residenciais {
  background: #ffffff;
  padding: 90px 20px;
}

.cta-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.cta-residenciais h2 {
  font-size: 36px;
  font-weight: 700;
  color: #043730;
  margin-bottom: 18px;
}

/* TEXTO */
.cta-residenciais p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
}

/* BOTÃO */
.cta-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #043730;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #C9A24D;
  color: #043730;
  transform: translateY(-2px);
}
/* =================================================
   NOTEBOOK / TELAS MÉDIAS
================================================= */
@media (max-width: 1200px) {
  .contato-imob-hero h1 {
    font-size: 36px;
  }

  .contato-imob-cards {
    gap: 24px;
  }

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =================================================
   TABLET
================================================= */
@media (max-width: 900px) {
  .contato-imob-hero {
    padding: 80px 20px;
  }

  .contato-imob-hero h1 {
    font-size: 32px;
  }

  .contato-imob-hero p {
    font-size: 15px;
  }

  .contato-imob-cards {
    grid-template-columns: 1fr;
    margin-top: -40px;
    padding-bottom: 60px;
  }

  .contato-imob-card {
    padding: 28px;
  }

  .contato-imob-card-map iframe {
    min-height: 300px;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-residenciais h2 {
    font-size: 30px;
  }
}

/* =================================================
   MOBILE
================================================= */
@media (max-width: 520px) {
  .contato-imob-hero {
    padding: 70px 16px;
  }

  .contato-imob-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .contato-imob-hero h1 {
    font-size: 26px;
  }

  .contato-imob-hero p {
    font-size: 14px;
  }

  .contato-imob-cards {
    padding: 0 16px 50px;
    gap: 20px;
  }

  .contato-imob-card {
    padding: 22px;
    border-radius: 16px;
  }

  .contato-imob-card-info h2 {
    font-size: 20px;
  }

  .contato-imob-card-info li {
    gap: 12px;
    margin-bottom: 20px;
  }

  .contato-imob-icon {
    width: 38px;
    height: 38px;
  }

  .contato-imob-icon svg {
    width: 18px;
    height: 18px;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid img {
    height: 200px;
  }

  .cta-residenciais {
    padding: 70px 16px;
  }

  .cta-residenciais h2 {
    font-size: 26px;
  }

  .cta-residenciais p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 16px;
  }
}

/* =================================================
   MOBILE MUITO PEQUENO
================================================= */
@media (max-width: 360px) {
  .contato-imob-hero h1 {
    font-size: 24px;
  }

  .contato-imob-card {
    padding: 18px;
  }

  .cta-residenciais h2 {
    font-size: 22px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(3, 43, 37, 0.95);
    border: 1px solid #C9A24D;
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .logo img {
    height: 70px;
  }
}
