body {
    font-family: 'Poppins', sans-serif;
    background-color: #dfd1b3;
    margin: 0;
    overflow-x: hidden;
}

  .navbarArea {
      position: absolute;
  }

  /* ===== HEADER ESTILO ===== */
  nav.navbar {
      background: rgba(0, 0, 0, 0.6);
      /* preto fosco translúcido */
      backdrop-filter: blur(6px);
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 999;
      transition: background 0.3s ease;
  }

  nav.navbar.scrolled {
      background: rgba(0, 0, 0, 0.9);
  }

  .navbar-nav .nav-link {
      color: #ffffff !important;
      font-weight: 600;
      margin: 0 10px;
      position: relative;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
      color: #e5c89c !important;
      /* dourado suave */
  }

  .navbar-nav .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #e5c89c;
      border-radius: 2px;
  }

  .navbar-brand img {
      height: 60px;
      object-fit: contain;
  }

  /* Compensa a altura do header fixo */
  .page-offset {
      margin-top: 90px;
  }

  .hero {
      height: 64vh;
      overflow: hidden;
  }

  .hero .content {
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  }

  .btn-outline-light:hover {
      background-color: #e5c89c;
      border-color: #e5c89c;
      color: #77685e !important;
  }

  /* ===== SEÇÃO DE BUSCA ===== */
  .busca-section {
        margin-top: -150px;
      position: relative;
  }

  .busca-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      max-width: 1100px;
  }

  .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: #3b3029;
  }

  .form-select,
  .form-range {
      border: 1px solid #9c8a6f;
      border-radius: 8px;
      color: #3b3029;
  }

  .form-select:focus {
      box-shadow: 0 0 0 0.2rem rgba(200, 170, 120, 0.4);
      border-color: #c8aa78;
  }

  .btn-buscar {
      color: #fff;
      border: none;
      border-radius: 10px;
      transition: 0.3s;
      font-size: 1rem;
      letter-spacing: 0.5px;
  }

  .btn-buscar:hover {
      background-color: #a9926b;
      transform: translateY(-2px);
  }

  /* Ajustes responsivos */
  @media (max-width: 768px) {
      .busca-card {
          border-radius: 15px;
          padding: 20px;
      }
  }

/* ===== RANGE DUPLO ===== */
.range-container {
    position: relative;
    height: 35px;
}

.form-range {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

/* minRange fica por baixo */
#minRange {
    z-index: 2;
}

/* maxRange fica por cima da faixa, mas sem trilha */
#maxRange {
    z-index: 3;
    background: transparent;
}

/* estilo dos thumbs (bolinhas) */
.form-range::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #bca57a;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    z-index: 5;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #bca57a;
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    z-index: 5;
}

/* trilha base */
.slider-track {
    position: absolute;
    height: 6px;
    background-color: #7e735d;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 1;
}

/* faixa dourada entre os seletores */
.slider-track::before {
    content: "";
    position: absolute;
    height: 6px;
    background-color: #bca57a;
    border-radius: 5px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.form-range,
.form-range:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
.input-range-container  {
    margin-top: 29px;
}

.input-range-container label {

    margin-bottom: -5px !important;
}

  /* remove a trilha visível do range inferior (minRange) */

/* remove a trilha visível do range superior (maxRange) */
#maxRange::-webkit-slider-runnable-track {
    background: transparent;
}

#maxRange::-moz-range-track {
    background: transparent;
}
  

/* === CORREÇÃO DO CARROSSEL E POSICIONAMENTO === */
.carousel-section {
    margin-top: -50px;
    padding: 60px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
}

.carousel-img {
    border-radius: 20px;
    width: 100%;
    height: 550px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.carousel-info {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    width: 360px;
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.carousel-info .icons span {
    margin-right: 20px;
    color: #5e5343;
    font-weight: 500;
}

.carousel-info i {
    color: #7e735d;
    margin-right: 4px;
}

.carousel-indicators [data-bs-target] {
    background-color: #bca57a;
    width: 40px;
    height: 6px;
    border-radius: 5px;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(75%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* ===== ULTIMAS CASAS ADICIONADAS ===== */
/* ===== SESSÃO ÚLTIMOS IMÓVEIS ===== */
.ultimos-imoveis {
    background-color: #7e735d;
    /* fundo marrom suave */
}

.ultimos-imoveis h2 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.card-imovel {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.card-imovel .corretor img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-imovel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-imovel img {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.imgCorretor {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-imovel .card-body {
    padding: 1rem 1.2rem;
}

.card-imovel h6 {
    color: #3b3029;
}

.card-imovel h5 {
    color: #000;
}

.card-imovel .text-secondary {
    color: #7e735d !important;
}

.text-secondary-title {
    color: #bca57a !important;
}

.card-imovel i {
    color: #7e735d;
    margin-right: 3px;
}

.card-imovel .btn-outline-dark {
    border-radius: 20px;
    font-size: 0.8rem;
    border-color: #bca57a;
    color: #3b3029;
    transition: all 0.3s;
}

.card-imovel .btn-outline-dark:hover {
    background-color: #bca57a;
    color: #fff;
    border-color: #bca57a;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .card-imovel img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .ultimos-imoveis h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .card-imovel img {
        height: 160px;
    }
}
/* ===== FOOTER ===== */

  .footer {
    padding-top: 25px;
    padding-bottom: 10px;
      background-color: #7e735d;
      color: #f5f5f5;
      position: relative;
      font-family: 'Poppins', sans-serif;
  }

  .footer-logo {
      height: 180px;
      filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  }

  .linksSociais {
    margin: auto;

  }

  .footer a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer a:hover {
      color: #e5c89c;
  }

  .footer-links a {
      display: block;
      margin-bottom: 4px;
      font-weight: 400;
  }

  .footer .bi {
      font-size: 1.3rem;
      color: #f5f5f5;
      transition: 0.3s;
  }

  .footer .bi:hover {
      color: #e5c89c;
      transform: scale(1.1);
  }

  .buscarImovelFooter {
    margin: auto;
  }

  .btn-buscar {
      background-color: #d2b48c;
      color: #3b3029;
      border: none;
      border-radius: 8px;
      transition: 0.3s;
  }

  .btn-buscar:hover {
      background-color: #c2a979;
      color: #fff;
  }

  .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* ===== SESSÃO POR QUE NOS ESCOLHER ===== */
  .porque-section {
      position: relative;
      overflow: hidden;
      background-color: #000;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
  }

  /* Imagem de fundo */
  .porque-section .bg-img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: url('../img/fundoSiteJane.png') no-repeat center right;
      background-size: cover;
      z-index: 1;
  }

  /* Painel blur ocupando toda lateral esquerda */
  .porque-blur-box {
      position: relative;
      z-index: 2;
      width: 55%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(12px);
      border-top-right-radius: 150px;
      border-bottom-right-radius: 150px;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
  }

  /* Conteúdo dentro do container (respeita grid do site) */
  .porque-blur-box .container {
      padding-left: 2rem;
      padding-right: 2rem;
  }

  .porque-blur-box .content-box {
      max-width: 600px;
  }

  /* Ícones */
  .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: #bca57a;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
  }

  /* Textos */
  .porque-section h2 {
      font-size: 2rem;
      letter-spacing: 1px;
  }

  .porque-section .text-secondary {
      color: #bca57a !important;
  }

  .porque-section p {
      color: #ddd;
      font-size: 0.95rem;
      line-height: 1.4;
  }

  /* Responsivo */
  @media (max-width: 992px) {
      .porque-section {
          height: auto;
          padding: 60px 0;
      }

      .porque-blur-box {
          width: 100%;
          border-radius: 0;
          padding: 3rem 0;
      }

      .porque-section .bg-img {
          background-position: center;
      }
  }


  /* ===== SEÇÃO NOSSOS CORRETORES ===== */
  .corretores-section {
      /* tom bege do site */
      padding: 80px 0;
  }

  .corretores-box {
      background-color: #f8f8f8;
      border-radius: 25px;
  }

  /* Título */
  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #bca57a;
      text-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }

  .section-title .text-secondary {
      color: #ddd !important;
      text-shadow: none;
  }

  .section-title .text-highlight {
      color: #bca57a !important;
  }

  /* Cards */
  .card-corretor {
      transition: all 0.3s ease;
      background: #fff;
  }

  .card-corretor:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .corretor-foto {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
  }

  /* Botão "Ver todos" */
  .corretores-section .btn-dark {
      background-color: #bca57a;
      border: none;
      font-weight: 600;
      transition: 0.3s;
  }

  .corretores-section .btn-dark:hover {
      background-color: #a28d68;
  }



.pagination .page-link {
    color: #bca57a;
    border: none;
    margin: 0 3px;
    font-weight: 600;
}

.pagination .page-link:hover {
    background-color: #bca57a;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #bca57a;
    color: #fff;
    border: none;
}


.quem-somos-section {
    background-color: #7e735d;
    /* fundo levemente escuro, como o print */
}

.quem-somos-card {
    background-color: #f8f5ef;
    border-radius: 25px;
}

.text-secondary-title {
    color: #c6b086;
    font-weight: 600;
    letter-spacing: 1px;
}

.text-justify {
    text-align: justify;
}

.quem-somos-card img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.quem-somos-card img:hover {
    transform: scale(1.03);
}

.historia-card {
    background-color: #f8f5ef;
    border-radius: 20px;
}

.text-secondary-title {
    color: #c6b086;
    /* tom dourado usado nos títulos */
    font-weight: 600;
    letter-spacing: 1px;
}

.text-justify {
    text-align: justify;
}

.historia-card img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.historia-card img:hover {
    transform: scale(1.03);
}




/* ====== SEÇÃO CORRETORES SOBRE ====== */

.corretores-sobre-box {
    background-color: #f8f5ef;
    border-radius: 25px;
}

/* ====== CARD ====== */
.card-corretor-sobre {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-corretor-sobre:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.corretor-foto {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4c19c;
}

/* ====== CONTROLES CARROSSEL (MOBILE) ====== */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(0.6);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 767px) {
    .corretor-foto {
        width: 100px;
        height: 100px;
    }

    .card-corretor-sobre {
        max-width: 280px;
        margin: 0 auto;
    }
}


/* ===== MODAL CONTATO ===== */
#contatoModal .modal-content {
    background-color: #f8f5ef;
}

#contatoModal .form-control:focus {
    border-color: #bca57a;
    box-shadow: 0 0 0 0.2rem rgba(188, 165, 122, 0.25);
}

#contatoModal .btn-dark {
    background-color: #7e735d;
    border: none;
}

#contatoModal .btn-dark:hover {
    background-color: #6c624f;
}

#valor::-webkit-slider-thumb {
    background-color: #bca57a;
}

#valor::-moz-range-thumb {
    background-color: #bca57a;
}

/* ===== MODAL LOGIN ===== */
#loginModal .modal-content {
    background-color: #f8f5ef;
}

#loginModal .form-control:focus {
    border-color: #bca57a;
    box-shadow: 0 0 0 0.2rem rgba(188, 165, 122, 0.25);
}

#loginModal .btn-dark {
    background-color: #7e735d;
    border: none;
}

#loginModal .btn-dark:hover {
    background-color: #6c624f;
}


/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    /* verde padrão WhatsApp */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    background-color: #1ebe5d;
    text-decoration: none;
    color: #fff;
}

/* Responsivo (telas menores) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-float {
    animation: pulse 2.5s infinite ease-in-out;
}



  /* Responsividade */
  @media (max-width: 992px) {
      .section-title {
          font-size: 2rem;
      }

      .corretores-box {
          padding: 3rem 2rem;
      }
  }

/* ===== RESPONSIVIDADE ===== */

/* Telas médias (tablets e notebooks pequenos) */
@media (max-width: 992px) {
    .carousel-container {
        max-width: 95%;
        min-height: 500px;
    }

    .carousel-img {
        height: 420px;
    }

    .carousel-info {
        width: 320px;
        padding: 20px;
        right: 10px;
    }

    .carousel-info h3 {
        font-size: 1.6rem;
    }

    .carousel-info h5 {
        font-size: 0.95rem;
    }

    .carousel-info .icons span {
        margin-right: 15px;
        font-size: 0.9rem;
    }
}

/* Telas pequenas (celulares em landscape e tablets pequenos) */
@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }

    .carousel-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 650px;
    }

    .carousel-img {
        height: 380px;
        border-radius: 15px;
    }

    .carousel-info {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 90%;
        margin-top: -50px;
        background: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    }

    .carousel-info h5 {
        font-size: 1rem;
    }

    .carousel-info h3 {
        font-size: 1.4rem;
    }

    .carousel-info .icons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .carousel-info .corretor {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Telas muito pequenas (celulares em portrait) */
@media (max-width: 576px) {
    .carousel-img {
        height: 300px;
    }

    .carousel-info {
        width: 95%;
        padding: 18px;
        margin-top: -80px;
    }

    .carousel-info h3 {
        font-size: 1.2rem;
    }

    .carousel-info p {
        font-size: 0.85rem;
    }

    .carousel-info .icons span {
        font-size: 0.85rem;
    }

    .carousel-info img {
        width: 30px;
        height: 30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 8%;
    }
}

.card-imovel .carousel-inner img {
    height: 250px;
    /* altura padronizada para desktop */
    object-fit: cover;
    /* recorta a imagem mantendo proporção */
    width: 100%;
    border-radius: 12px 12px 0 0;
}

/* =====================================================
   ESTILO GERAL DO CONTAINER
===================================================== */

.imovel-container {
    max-width: 1200px;
    margin: auto;
    padding: 25px 15px;
}


/* =====================================================
   CABEÇALHO DO IMÓVEL
===================================================== */

.imovel-header {
    background: #e8d9b8;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.status-badge {
    background: #1d6f42;
    padding: 6px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
}

.imovel-preco {
    color: #1d6f42;
    font-weight: 700;
    font-size: 28px;
    margin-top: 10px;
}

.imovel-titulo {
    font-size: 32px;
    font-weight: 700;
    margin-top: 5px;
}

.imovel-local {
    font-size: 17px;
    color: #555;
    margin-top: 5px;
}


/* =====================================================
   GALERIA DE IMAGENS
===================================================== */

.galeria-img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}


/* =====================================================
   TABS (DETALHES / DESCRIÇÃO / IMAGENS)
===================================================== */

.imovel-tabs .nav-link {
    font-weight: 600;
    color: #333;
    border-radius: 0;
    padding: 10px 18px;
    border: none;
}

.imovel-tabs .nav-link:hover {
    background: #e6e6e6;
}

.imovel-tabs .nav-link.active {
    color: #fff;
    background: #1d6f42;
}


/* =====================================================
   TABELA DE DETALHES
===================================================== */

.detalhes-table table {
    width: 100%;
    margin-bottom: 20px;
}

.detalhes-table th {
    width: 180px;
    font-weight: 700;
    padding: 8px 0;
    color: #333;
}

.detalhes-table td {
    color: #555;
    font-size: 16px;
    padding: 8px 0;
}


/* =====================================================
   DESCRIÇÃO
===================================================== */

.descricao-text {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}


/* =====================================================
   MINI GALERIA DA TAB IMAGENS
===================================================== */

.img-miniatura {
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}


/* =====================================================
   CARD DO CORRETOR
===================================================== */

.corretor-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.corretor-card .corretor-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.corretor-card h5 {
    font-weight: 700;
    margin-bottom: 3px;
}

.corretor-card p {
    font-size: 14px;
    margin: 0;
    color: #777;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 40px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}


/* =====================================================
   SEÇÃO IMÓVEIS RELACIONADOS
===================================================== */

.relacionados-card img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.relacionados-card h6 {
    font-weight: bold;
    margin-top: 10px;
    font-size: 15px;
}

.relacionados-card p {
    font-size: 14px;
    color: #1d6f42;
}


/* =====================================================
   FORMULÁRIO "DESEJA VISITAR?"
===================================================== */

.visita-wrapper {
    margin-top: 40px;
}

.visita-wrapper h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.visita-wrapper input,
.visita-wrapper textarea {
    border-radius: 8px;
    border: 1px solid #bbb;
    padding: 10px;
}

.visita-wrapper textarea {
    height: 120px;
}

.btn-visita {
    background: #1d6f42;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 18px;
}

.btn-visita:hover {
    background: #155731;
}


/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media (max-width: 991px) {
    .galeria-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .galeria-img {
        height: 260px;
    }

    .imovel-titulo {
        font-size: 26px;
    }

    .imovel-preco {
        font-size: 22px;
    }

    .corretor-card {
        text-align: center;
    }
}

/* =====================================================
   HERO CARROSSEL + CARD
===================================================== */

.imovel-hero {
    margin-top: 70px;
    position: relative;
    width: 100%;
    margin-bottom: 85px;
}

/* IMAGENS DO CARROSSEL */
.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* CARD FLUTUANTE */
.hero-card {
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%);

    width: 75%;
    background: #fff;
    padding: 35px;

    border-radius: 20px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.20);
}

/* TÍTULO DO CARD */
.hero-titulo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hero-local {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
}

/* LINHA DE DADOS: STATUS + PREÇO + ÍCONES */
.hero-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BADGE */
.hero-status {
    background: #3467d8;
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}

/* PREÇO */
.hero-preco {
    font-size: 24px;
    font-weight: bold;
    color: #7da000;
}

/* ÍCONES */
.hero-icones span {
    margin-left: 18px;
    font-size: 16px;
    color: #444;
}

.hero-icones i {
    margin-right: 4px;
    color: #444;
}

/* =====================================================
RESPONSIVO
===================================================== */

@media (max-width: 991px) {

    .hero-card {
        width: 90%;
        padding: 25px;
    }

    .hero-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-icones span {
        margin-left: 0;
        margin-right: 12px;
    }
}

@media (max-width: 600px) {

    .hero-img {
        height: 300px;
    }

    .hero-card {
        width: 95%;
        padding: 20px;
        bottom: -35px;
    }

    .hero-titulo {
        font-size: 22px;
    }

    .hero-preco {
        font-size: 20px;
    }
}


/* GALERIA DE MINIATURAS */
.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}

.galeria-item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.galeria-item:hover {
    transform: scale(1.03);
}

.galeria-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* MODAL DE IMAGENS */
.modal-img {
    max-height: 90vh;
    object-fit: contain;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(1);
}