.elementor-kit-6{--e-global-color-primary:#1A1A1A;--e-global-color-secondary:#333333;--e-global-color-text:#F6F6F7;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Playfair Display";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Playfair Display";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================= */
/* SLIDER */
/* ============================= */

.imovelSwiper {
  width: 100%;
  position: relative;
}

/* 🔥 PADRONIZA ALTURA */
.imovelSwiper .swiper-slide {
  position: relative;
  height: 700px; /* antes era min-height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;

  background-size: cover;
  background-position: center;
}

/* FUNDO DESFOCADO */
.imovelSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(30px) brightness(0.4);
  transform: scale(1.2);
  z-index: 1;
}

/* 🔥 IMAGEM PADRONIZADA */
.imovelSwiper img {
  width: 100%;
  max-width: 650px;
  height: 100%;

  object-fit: cover; /* 🔥 ESSENCIAL */
  object-position: center;

  border-radius: 20px;
  position: relative;
  z-index: 2;

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.imovelSwiper img:hover {
  transform: scale(0.98);
}

/* ============================= */
/* BOTÃO DOWNLOAD */
/* ============================= */

.imovelSwiper .download-btn {
  position: absolute;
  top: 25px;
  right: 25px;

  z-index: 999;

  display: flex;
  align-items: center;
  gap: 8px;

  background: rgba(255,255,255,0.95);
  color: #111;

  border: 1px solid rgba(0,0,0,0.1);
  padding: 10px 16px;
  border-radius: 10px;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* SVG ÍCONE */
.imovelSwiper .download-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  opacity: 0.8;
}

/* HOVER */
.imovelSwiper .download-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================= */
/* SETAS */
/* ============================= */

.swiper-button-next,
.swiper-button-prev {
  background: none !important;
  color: #fff !important;
  width: 42px !important;
  height: 42px !important;
  opacity: 0.75;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}

/* ============================= */
/* PAGINAÇÃO */
/* ============================= */

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4) !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 768px) {
  .imovelSwiper .swiper-slide {
    height: 400px; /* 🔥 também fixo no mobile */
    padding: 30px 10px;
  }

  .imovelSwiper img {
    max-width: 100%;
  }

  .imovelSwiper .download-btn {
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 13px;
  }
}
/* APROXIMAR ÍCONE DO TÍTULO */
.elementor-icon-box-wrapper {
  gap: 6px !important;
}

/* REMOVE ESPAÇO PADRÃO DO ELEMENTOR */
.elementor-icon-box-icon {
  margin-bottom: 4px !important;
}

/* AJUSTA TÍTULO */
.elementor-icon-box-title {
  margin-top: 0 !important;
  line-height: 1.2;
}
html {
  background-color: #1A1A1A !important;
}

body {
  background-color: #1A1A1A !important;
}
/* MOBILE */
@media (max-width: 768px) {
  .topbar {
    justify-content: center;
    text-align: center;
  }

  .name {
    display: none; /* esconde "Kate Horrara" */
  }

  #changing-text {
    display: block;
    font-size: 13px;
    line-height: 1.2;
  }
}
/* ============================= */
/* CARD BASE */
/* ============================= */

.imovel-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

/* HOVER */
.imovel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ============================= */
/* IMAGEM */
/* ============================= */

/* CONTAINER */
.imovel-card .card-img {
  height: 270px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

/* IMAGEM */
.imovel-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* ZOOM */
.imovel-card:hover .card-img img {
  transform: scale(1.05);
}
.filtro-imoveis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  background: linear-gradient(90deg, #2a2a2a, #3a3a3a);
  padding: 20px 30px;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 900px;
}

.filtro-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filtro-item label {
  font-size: 12px;
  color: #ccc;
}

.filtro-imoveis select {
  height: 40px;
  border-radius: 8px;
  border: none;
  padding: 0 10px;
  background: #444;
  color: #fff;
}

.preco {
  width: 280px;
}

.preco-topo {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #fff;
}

.range-box {
  display: flex;
  gap: 10px;
}

.range-box input[type="range"] {
  width: 120px;
  accent-color: #fff;
}

.filtro-imoveis button {
  height: 40px;
  padding: 0 20px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.filtro-imoveis button:hover {
  background: #eaeaea;
}

/* MOBILE */
@media (max-width: 768px) {
  .filtro-imoveis {
    flex-direction: column;
    align-items: stretch;
  }

  .range-box {
    flex-direction: column;
  }

  .range-box input[type="range"] {
    width: 100%;
  }

  .filtro-imoveis button {
    width: 100%;
  }
}
/* ===== AJUSTES FINOS FILTRO ===== */

.filtro-imoveis {
  align-items: center;
}

.filtro-item {
  justify-content: center;
}

.preco {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preco-topo {
  align-items: center;
  margin-bottom: 6px;
}

.preco-topo small {
  display: block;
  font-size: 10px;
  color: #aaa;
}

.range-box {
  align-items: center;
}

.filtro-imoveis button {
  margin-top: 18px; /* alinha com select */
}
.preco-topo {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.preco-col {
  display: flex;
  flex-direction: column;
}

.preco-col.right {
  align-items: flex-end;
  margin-right: 5px; /* 🔥 ajuste fino */
}
/* ===== ALINHAMENTO PROFISSIONAL ===== */

.preco {
  width: 300px;
}

.range-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* cada slider ocupa metade EXATA */
.range-box input[type="range"] {
  width: 48%;
}

/* topo acompanha exatamente os sliders */
.preco-topo {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* garante alinhamento perfeito */
.preco-col {
  width: 48%;
}

.preco-col.right {
  align-items: flex-end;
}
.filtro-botoes {
  display: flex;
  gap: 10px;
  align-items: center;
}

#limpar-filtros {
  height: 40px;
  padding: 0 15px;
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  border-radius: 8px;
  cursor: pointer;
}

#limpar-filtros:hover {
  background: #444;
  color: #fff;
}/* End custom CSS */