#home-hero {
  position: relative;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 18s infinite;
  will-change: opacity;
}

.hero-slide:nth-child(1) {
  background-image: url("../assets/home-hero.jpeg");
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  background-image: url("../assets/BACKGROUND_SONHO.jpg");
  background-size: cover;
  background-position: right center;
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  background-image: url("../assets/BACKGROUND_NOVOLAR.jpg");
  background-size: cover;
  background-position: right center;
  animation-delay: 12s;
}

@keyframes heroFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}

#home-hero #espelho {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
}


@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#home-hero #hero-content {
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 1.8em 1.6em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  animation: fadeInSlideUp 1s ease-out forwards;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.4);
}

#home-hero #hero-content #form-filtros {
  display: contents;
}

#home-hero #hero-content select {
  background-color: #fff;
  flex: 1 1 12em;
  padding: 0.75em 0.9em;
  outline: none;
  border: 1.5px solid rgba(160,110,2,0.15);
  border-radius: var(--radius);
  box-shadow: var(--sombra-box);
  cursor: pointer;
  transition: border-color 0.2s;
}

#home-hero #hero-content select:focus {
  border-color: var(--cor-destaque);
}

#home-hero #hero-content select option {
  padding: 0.5em;
  border-radius: 5px;
  border: none;
}

#home-hero #hero-content button {
  flex: 1 1 12em;
  background-color: var(--cor-primaria);
  padding: 0.75em;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--sombra-box);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95em;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

#home-hero #hero-content button:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-box-hover);
}

#home-hero #espelho #btn-trocar-filtro {
  background-color: transparent;
  text-shadow: var(--sombra-texto);
  color: var(--branco);
  padding: 0.5em;
  border: none;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}

#home-hero #espelho #div-buscar {
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 1.8em 1.6em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  animation: fadeInSlideUp 1s ease-out forwards;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.4);
}

#home-hero #espelho #div-buscar #form-codigo {
  display: contents;
}

#home-hero #espelho #div-buscar input {
  background-color: #fff;
  flex: 1;
  padding: 0.75em 0.9em;
  outline: none;
  border: 1.5px solid rgba(160,110,2,0.15);
  border-radius: var(--radius);
  box-shadow: var(--sombra-box);
  transition: border-color 0.2s;
}

#home-hero #espelho #div-buscar input:focus {
  border-color: var(--cor-destaque);
}

.slider-track-wrapper {
  position: relative;
  width: 100%;
  height: 6px;
  margin: 1.2em 0 0.5em 0;
  background-color: var(--cinza-claro);
  border-radius: 3px;
}

.slider-track {
  position: absolute;
  height: 100%;
  background: var(--cor-destaque);
  border-radius: 3px;
  left: 0%;
  right: 0%;
}

.slider-track-wrapper input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 0;
  left: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  z-index: 3;
}

.slider-track-wrapper input[type="range"]:last-of-type {
  z-index: 4;
}

.slider-track-wrapper input[type="range"]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--branco);
  border: 3px solid var(--cor-destaque);
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 5;
}

.slider-track-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
  border-color: var(--cor-primaria-hover);
  box-shadow: 0 4px 10px rgba(160, 110, 2, 0.4);
}

.slider-track-wrapper input[type="range"]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: var(--branco);
  border: 3px solid var(--cor-destaque);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
  z-index: 5;
}

.slider-track-wrapper input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.25);
  border-color: var(--cor-primaria-hover);
}

.slider-track-wrapper input[type="range"]:focus {
  outline: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--branco);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  margin-top: 0.4em;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

#home-hero #espelho #div-buscar button {
  flex: 1;
  background-color: var(--cor-primaria);
  padding: 0.7em;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--sombra-box);
  cursor: pointer;
  font-weight: bold;
}

#secao-feliz {
  padding: 4em 2em;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#secao-feliz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(160, 110, 2, 0.05) 0%,
    rgba(255, 238, 97, 0.05) 100%
  );
  pointer-events: none;
}

.container-feliz {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
  position: relative;
  z-index: 1;
}

.imagem-feliz {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
  aspect-ratio: 3/4;
  min-height: 400px;
}

.imagem-feliz:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.imagem-feliz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.conteudo-feliz {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.conteudo-feliz h2 {
  font-size: 2.5em;
  color: var(--cor-destaque);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.conteudo-feliz p {
  font-size: 1.1em;
  color: var(--preto);
  line-height: 1.8;
  margin: 0;
}

.botoes-feliz {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1em;
}

.btn-buscar-imoveis,
.btn-anunciar {
  padding: 1em 2em;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-box);
  letter-spacing: 0.3px;
}

.btn-buscar-imoveis {
  background-color: var(--cor-primaria);
  color: var(--preto);
}

.btn-buscar-imoveis:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-box-hover);
}

.btn-anunciar {
  background-color: var(--preto);
  color: var(--branco);
}

.btn-anunciar:hover {
  background-color: var(--cor-primaria);
  transform: translateY(-3px);
  box-shadow: var(--sombra-box-hover);
}

#videos-apresentacao {
  padding: 4em 2em;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.container-videos {
  max-width: 1200px;
  margin: 0 auto;
}

.container-videos.split-layout {
  display: flex;
  align-items: center;
  gap: 3em;
}

.videos-texto {
  flex: 0 0 35%;
  max-width: 35%;
}

.videos-texto .titulo-section {
  text-align: left;
  margin-bottom: 0.2em;
  line-height: 1.3;
}

.videos-texto .subtitulo-section {
  text-align: left;
  margin-bottom: 1.5em;
  line-height: 1.5;
}

.videos-cta {
  font-size: 1.1em;
  font-weight: 500;
  color: var(--cor-destaque);
  display: flex;
  align-items: center;
  gap: 0.5em;
  animation: bounce-horizontal 2s infinite ease-in-out;
}

@keyframes bounce-horizontal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.carrossel-videos {
  flex: 1;
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 1em 0 1.5em 0;
  scrollbar-width: thin;
  scrollbar-color: var(--cor-destaque) var(--cinza-claro);
  max-width: 100%;
  align-items: center;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}

.carrossel-videos::-webkit-scrollbar {
  height: 8px;
}
.carrossel-videos::-webkit-scrollbar-track {
  background: var(--cinza-claro);
  border-radius: 4px;
}
.carrossel-videos::-webkit-scrollbar-thumb {
  background-color: var(--cor-primaria);
  border-radius: 4px;
}

.carrossel-videos blockquote.instagram-media {
  scroll-snap-align: center;
  flex: 0 0 min(326px, 90vw);
  max-width: 326px !important;
  min-width: 300px !important;
}

@media (max-width: 990px) {
  .container-videos.split-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 2em;
  }
  .videos-texto {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .videos-texto .titulo-section,
  .videos-texto .subtitulo-section {
    text-align: center;
  }
  .videos-cta {
    justify-content: center;
  }
  .carrossel-videos blockquote.instagram-media {
    scroll-snap-align: start;
  }
}


#oportunidades-hoje {
  padding: 2em 3em;
  max-width: 1600px;
  margin: 0 auto;
}

#oportunidades-hoje .subtitulo-section {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#oportunidades-hoje .subtitulo-section .btn-arrow {
  display: flex;
  gap: 0.5em;
}

#oportunidades-hoje .subtitulo-section .arrow-left,
#oportunidades-hoje .subtitulo-section .arrow-right {
  border: 1.5px solid var(--cinza-escuro);
  border-radius: 50%;
  box-shadow: var(--sombra-box);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  transition: all 0.3s ease;
  background-color: var(--branco);
}

#oportunidades-hoje .subtitulo-section .arrow-left:hover,
#oportunidades-hoje .subtitulo-section .arrow-right:hover {
  background-color: var(--cor-primaria-hover);
  border-color: var(--cor-destaque);
}

#oportunidades-hoje .subtitulo-section .arrow-left .fa-arrow-left,
#oportunidades-hoje .subtitulo-section .arrow-right .fa-arrow-right {
  font-size: 0.8em;
  color: var(--cinza-escuro);
}

#oportunidades-hoje .rolar {
  width: 100%;
  padding: 1em 1em 2em 1em;
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

#oportunidades-hoje .rolar::-webkit-scrollbar {
  display: none; 
}

#oportunidades-hoje .rolar .div-imovel {
  width: 85vw;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  width: 100%;
  min-height: 440px;
  height: auto;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

#oportunidades-hoje .rolar .div-imovel:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px) scale(1.01);
}

#oportunidades-hoje .rolar .div-imovel .div-imagem-imovel {
  position: relative;
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

#oportunidades-hoje .rolar .div-imovel .div-imagem-imovel .badge-tipo-contrato {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--cor-primaria);
  color: var(--preto);
  padding: 0.4em 0.8em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#oportunidades-hoje .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel {
  width: 100%;
  position: absolute;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

#oportunidades-hoje .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel * {
  pointer-events: auto;
}

#oportunidades-hoje .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel .badge-codigo {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
}

.div-codigo-imovel span {
  background-color: rgba(255, 238, 97, 0.6);
  padding: 0.4em;
  border-radius: 10px;
  font-size: 0.9em;
  z-index: 1;
  transition: 0.3s;
}

.div-codigo-imovel span:hover {
  background-color: var(--cor-primaria-hover);
}

.div-codigo-imovel .fa-heart {
  font-size: 1.2em;
  color: var(--cor-primaria-hover);
  z-index: 1;
  transition: all 0.3s ease;
}

.div-codigo-imovel .fa-heart.fa-solid {
  color: #ef4444;
  transform: scale(1.1);
}

.div-codigo-imovel .fa-heart:hover {
  transform: scale(1.2);
  color: #ef4444;
}


#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel ul {
  height: auto;
  min-height: 2.5em;
  flex-shrink: 0;
  list-style: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: rgba(0,0,0,0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0.4em 0;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel ul li {
  width: 33.3%;
  border-left: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  padding: 0.25em 0.1em;
  color: #666;
  font-size: 0.85em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel ul li i {
  color: var(--cor-destaque);
  font-size: 1.1em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel ul li:first-child {
  border-left: none;
}

#oportunidades-hoje
  .rolar
  .div-imovel
  .div-descricao-imovel
  .div-content-descricao {
  width: 100%;
  flex-grow: 1;
  padding: 1.2em 1em;
  color: var(--cinza-escuro);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao h3 {
  font-size: 1.15em;
  margin: 0 0 0.2em 0;
  color: var(--preto);
  font-weight: 800;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  letter-spacing: -0.5px;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao p {
  font-size: 0.9em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
  line-height: 1.5;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card {
  color: #777;
  font-size: 0.85em;
  margin-bottom: 0.2em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card i {
  color: var(--cor-destaque);
  margin-right: 0.3em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card {
  color: var(--cor-destaque);
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card i {
  margin-right: 0.3em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .valor-imovel-card {
  color: var(--preto);
  font-weight: 800;
  font-size: 1.3em;
  margin-top: auto; 
  margin-bottom: 0.2em;
  padding-top: 0.5em;
  border-top: 1px dashed rgba(0,0,0,0.1);
}


#destaques-vendas,
#destaques-locacao,
#destaques-lancamentos {
  padding: 2em 3em;
  max-width: 1600px;
  margin: 0 auto;
}

#destaques-vendas .subtitulo-section,
#destaques-locacao .subtitulo-section,
#destaques-lancamentos .subtitulo-section {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
}

#destaques-vendas .subtitulo-section .btn-arrow,
#destaques-locacao .subtitulo-section .btn-arrow,
#destaques-lancamentos .subtitulo-section .btn-arrow {
  display: flex;
  gap: 0.5em;
}

#destaques-vendas .subtitulo-section .arrow-left,
#destaques-vendas .subtitulo-section .arrow-right,
#destaques-locacao .subtitulo-section .arrow-left,
#destaques-locacao .subtitulo-section .arrow-right,
#destaques-lancamentos .subtitulo-section .arrow-left,
#destaques-lancamentos .subtitulo-section .arrow-right {
  border: 1.5px solid var(--cinza-escuro);
  border-radius: 50%;
  box-shadow: var(--sombra-box);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  transition: all 0.3s ease;
  background-color: var(--branco);
}

#destaques-vendas .subtitulo-section .arrow-left:hover,
#destaques-vendas .subtitulo-section .arrow-right:hover,
#destaques-locacao .subtitulo-section .arrow-left:hover,
#destaques-locacao .subtitulo-section .arrow-right:hover,
#destaques-lancamentos .subtitulo-section .arrow-left:hover,
#destaques-lancamentos .subtitulo-section .arrow-right:hover {
  background-color: var(--cor-primaria-hover);
  border-color: var(--cor-destaque);
}

#destaques-vendas .subtitulo-section .arrow-left .fa-arrow-left,
#destaques-vendas .subtitulo-section .arrow-right .fa-arrow-right,
#destaques-locacao .subtitulo-section .arrow-left .fa-arrow-left,
#destaques-locacao .subtitulo-section .arrow-right .fa-arrow-right,
#destaques-lancamentos .subtitulo-section .arrow-left .fa-arrow-left,
#destaques-lancamentos .subtitulo-section .arrow-right .fa-arrow-right {
  font-size: 0.8em;
  color: var(--cinza-escuro);
}

#destaques-vendas .rolar,
#destaques-locacao .rolar,
#destaques-lancamentos .rolar {
  width: 100%;
  padding: 1em 1em 2em 1em;
  display: flex;
  gap: 1.5em;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#destaques-vendas .rolar::-webkit-scrollbar,
#destaques-locacao .rolar::-webkit-scrollbar,
#destaques-lancamentos .rolar::-webkit-scrollbar {
  display: none; 
}

#destaques-vendas .rolar .div-imovel,
#destaques-locacao .rolar .div-imovel,
#destaques-lancamentos .rolar .div-imovel {
  width: 85vw;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  width: 100%;
  min-height: 440px;
  height: auto;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

#destaques-vendas .rolar .div-imovel:hover,
#destaques-locacao .rolar .div-imovel:hover,
#destaques-lancamentos .rolar .div-imovel:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-8px) scale(1.01);
}

#destaques-vendas .rolar .div-imovel .div-imagem-imovel,
#destaques-locacao .rolar .div-imovel .div-imagem-imovel,
#destaques-lancamentos .rolar .div-imovel .div-imagem-imovel {
  position: relative;
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

#destaques-vendas .rolar .div-imovel .div-imagem-imovel .badge-tipo-contrato,
#destaques-locacao .rolar .div-imovel .div-imagem-imovel .badge-tipo-contrato,
#destaques-lancamentos .rolar .div-imovel .div-imagem-imovel .badge-tipo-contrato {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--cor-primaria);
  color: var(--preto);
  padding: 0.4em 0.8em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.imagem-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.slider-trilho {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.slider-imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-slider-container:hover .slider-seta {
  opacity: 1;
}

.slider-seta.esquerda {
  left: 10px;
}

.slider-seta.direita {
  right: 10px;
}

.slider-seta:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.slider-seta:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.6);
}

#destaques-vendas .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel,
#destaques-locacao .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel,
#destaques-lancamentos .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel {
  width: 100%;
  position: absolute;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

#destaques-vendas .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel *,
#destaques-locacao .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel *,
#destaques-lancamentos .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel * {
  pointer-events: auto;
}

#destaques-vendas .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel .badge-codigo,
#destaques-locacao .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel .badge-codigo,
#destaques-lancamentos .rolar .div-imovel .div-imagem-imovel .div-codigo-imovel .badge-codigo {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
}


#destaques-vendas .rolar .div-imovel .div-descricao-imovel,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel ul,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel ul,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel ul {
  height: 2em;
  min-height: 2em;
  flex-shrink: 0;
  list-style: none;
  border-bottom: 1px solid var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel ul li,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel ul li,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel ul li {
  width: 33.3%;
  border-left: 1px solid var(--cinza-claro);
  text-align: center;
  padding: 0.25em 0.1em;
  color: var(--cinza-escuro);
  font-size: 0.85em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao {
  width: 100%;
  flex-grow: 1;
  padding: 0.8em 0.6em;
  color: var(--cinza-escuro);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.4em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao h3,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao h3,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao h3 {
  font-size: 1.05em;
  margin: 0;
  color: var(--preto);
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao p,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao p,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao p {
  font-size: 0.9em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
  line-height: 1.5;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card {
  color: var(--cinza-escuro);
  font-size: 0.9em;
  margin-bottom: 0.2em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card i,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card i,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao .localizacao-card i {
  color: var(--cor-destaque);
  margin-right: 0.3em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card {
  color: var(--cor-destaque);
  font-weight: 600;
  font-size: 0.9em;
  margin-bottom: 0.3em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card i,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card i,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao .tipo-imovel-card i {
  margin-right: 0.3em;
}

#destaques-vendas .rolar .div-imovel .div-descricao-imovel .div-content-descricao .valor-imovel-card,
#destaques-locacao .rolar .div-imovel .div-descricao-imovel .div-content-descricao .valor-imovel-card,
#destaques-lancamentos .rolar .div-imovel .div-descricao-imovel .div-content-descricao .valor-imovel-card {
  color: var(--preto);
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 0.4em;
  margin-bottom: 0.2em;
}

.btn-ficha-completa {
  width: 100%;
  margin-top: 0.8em;
  padding: 0.65em 1em;
  background-color: var(--cor-primaria);
  color: var(--preto);
  border: none;
  border-radius: var(--radius);
  font-size: 0.88em;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-embaixo);
  letter-spacing: 0.2px;
}

.btn-ficha-completa:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-box);
  filter: brightness(1.05);
}

.btn-ficha-completa i {
  font-size: 1em;
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .btn-ficha-completa {
  width: 100%;
  margin-top: 0.8em;
  padding: 0.6em 1em;
  background-color: var(--cor-primaria);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-embaixo);
}

#oportunidades-hoje .rolar .div-imovel .div-descricao-imovel .div-content-descricao .btn-ficha-completa:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-box);
  background-color: var(--cor-primaria-hover);
}

@media (max-width: 980px) {
  .container-feliz {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .imagem-feliz {
    transform: perspective(1000px) rotateY(0deg);
    order: 1;
    min-height: 350px;
    max-width: 500px;
    margin: 0 auto;
  }

  .conteudo-feliz {
    order: 2;
  }

  .conteudo-feliz h2 {
    font-size: 2em;
    text-align: center;
  }

  .conteudo-feliz p {
    text-align: center;
  }

  .botoes-feliz {
    justify-content: center;
  }
}

@media (max-width: 550px) {
  #secao-feliz {
    padding: 2em 1em;
  }

  .conteudo-feliz h2 {
    font-size: 1.8em;
  }

  .conteudo-feliz p {
    font-size: 1em;
  }

  .botoes-feliz {
    flex-direction: column;
  }

  .btn-buscar-imoveis,
  .btn-anunciar {
    width: 100%;
    justify-content: center;
  }
  #home-hero #espelho {
    padding: 2.5em 1em 0 1em;
  }

  #home-hero #hero-content {
    gap: 0.5em;
  }

  #home-hero #hero-content select,
  #home-hero #hero-content button {
    flex: 1 1 100%;
  }

  #home-hero #espelho #div-buscar {
    flex-direction: column;
  }

  #home-hero #espelho #div-buscar input,
  #home-hero #espelho #div-buscar button {
    width: 100%;
  }

  #oportunidades-hoje .titulo-section {
    font-size: 1.5em;
  }

  #oportunidades-hoje {
    padding: 3em 1em;
  }

  #oportunidades-hoje .subtitulo-section {
    font-size: 1em;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #oportunidades-hoje .subtitulo-section .arrow-left,
  #oportunidades-hoje .subtitulo-section .arrow-right {
    display: none;
  }

  #destaques-vendas .titulo-section,
  #destaques-locacao .titulo-section,
  #destaques-lancamentos .titulo-section {
    font-size: 1.5em;
  }

  #destaques-vendas,
  #destaques-locacao,
  #destaques-lancamentos {
    padding: 3em 1em;
  }

  #destaques-vendas .subtitulo-section,
  #destaques-locacao .subtitulo-section,
  #destaques-lancamentos .subtitulo-section {
    font-size: 1em;
    margin-bottom: 2em;
  }

  #home-hero {
    background-attachment: scroll;
  }
}

#mapa-imoveis {
  padding: 4em 2em;
  background-color: #f5f5f5;
}

.container-mapa {
  max-width: 1400px;
  margin: 0 auto;
}

#mapa-imoveis .titulo-section {
  text-align: center;
  margin-bottom: 0.5em;
}

.subtitulo-mapa {
  text-align: center;
  color: var(--cinza-escuro);
  font-size: 1.1em;
  margin-bottom: 2em;
}

#mapa-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-box);
  background-color: var(--branco);
  border: 1px solid var(--cinza-claro);
}

#mapa-index {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  #mapa-imoveis {
    padding: 2em 1em;
  }

  .subtitulo-mapa {
    font-size: 1em;
  }

  #mapa-index {
    height: 400px;
  }
}

@media (max-width: 550px) {
  #mapa-imoveis {
    padding: 2em 1em;
  }

  #mapa-index {
    height: 350px;
  }
}

#servicos-recursos {
  padding: 4em 2em;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.container-servicos {
  max-width: 1200px;
  margin: 0 auto;
}

#servicos-recursos .titulo-section {
  text-align: center;
  margin-bottom: 0.5em;
}

#servicos-recursos .subtitulo-section {
  text-align: center;
  color: var(--cinza-escuro);
  font-size: 1.1em;
  margin-bottom: 3em;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.card-servico {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2em;
  text-decoration: none;
  color: var(--preto);
  box-shadow: var(--sombra-embaixo);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid transparent;
}

.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-box);
  border-color: var(--cor-destaque);
}

.icon-servico {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--cor-primaria);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
  transition: all 0.3s ease;
}

.card-servico:hover .icon-servico {
  transform: scale(1.1) rotate(5deg);
}

.icon-servico i {
  font-size: 2em;
  color: var(--preto);
}

.card-servico h3 {
  font-size: 1.3em;
  color: var(--cor-destaque);
  margin: 0 0 0.5em 0;
  font-weight: 700;
}

.card-servico p {
  font-size: 1em;
  color: var(--cinza-escuro);
  line-height: 1.6;
  margin: 0;
}

#informacoes-legais {
  padding: 4em 2em;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.container-informacoes {
  max-width: 1200px;
  margin: 0 auto;
}

#informacoes-legais .titulo-section {
  text-align: center;
  margin-bottom: 0.5em;
}

#informacoes-legais .subtitulo-section {
  text-align: center;
  color: var(--cinza-escuro);
  font-size: 1.1em;
  margin-bottom: 3em;
}

.grid-informacoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.card-informacao {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5em;
  text-decoration: none;
  color: var(--preto);
  box-shadow: var(--sombra-embaixo);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.btn-ver-mais {
  display: block;
  margin: 2.5em auto 0;
  padding: 0.8em 2.5em;
  background-color: var(--cor-primaria);
  color: var(--preto);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-embaixo);
  letter-spacing: 0.2px;
  max-width: 200px;
  cursor: pointer;
  border: none;
}

.btn-ver-mais:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-box);
  filter: brightness(1.05);
}
  border-left: 4px solid var(--cor-destaque);
  position: relative;
  overflow: hidden;
}

.card-informacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 110, 2, 0.05) 0%, rgba(255, 238, 97, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-informacao:hover::before {
  opacity: 1;
}

.card-informacao:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-box);
  border-left-color: var(--cor-primaria-hover);
}

.icon-informacao {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--cor-primaria);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5em;
  position: relative;
  z-index: 1;
}

.icon-informacao i {
  font-size: 1.8em;
  color: var(--preto);
}

.card-informacao h3 {
  font-size: 1.4em;
  color: var(--cor-destaque);
  margin: 0 0 0.8em 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.card-informacao p {
  font-size: 1em;
  color: var(--cinza-escuro);
  line-height: 1.6;
  margin: 0 0 1.5em 0;
  position: relative;
  z-index: 1;
}

.link-card {
  color: var(--cor-destaque);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-informacao:hover .link-card {
  transform: translateX(5px);
  color: var(--cor-primaria-hover);
}

#sobre-home {
  padding: 4em 2em;
  background-color: var(--cor-primaria);
  color: var(--preto);
}

.container-sobre-home {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.conteudo-sobre-home h2 {
  font-size: 2.5em;
  margin: 0 0 1em 0;
  font-weight: 700;
  color: var(--preto);
}

.conteudo-sobre-home p {
  font-size: 1.2em;
  line-height: 1.8;
  margin: 0 0 2em 0;
  color: var(--preto);
}

.botoes-sobre-home {
  display: flex;
  gap: 1.5em;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-sobre,
.btn-buscar-sobre {
  padding: 1em 2.5em;
  border-radius: 50px;
  font-size: 1.05em;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.3s ease;
  box-shadow: var(--sombra-box);
  letter-spacing: 0.3px;
}

.btn-sobre {
  background-color: var(--preto);
  color: var(--branco);
}

.btn-sobre:hover {
  background-color: var(--branco);
  color: var(--preto);
  transform: translateY(-3px);
}

.btn-buscar-sobre {
  background-color: var(--branco);
  color: var(--preto);
}

.btn-buscar-sobre:hover {
  background-color: var(--preto);
  color: var(--branco);
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .grid-servicos,
  .grid-informacoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #servicos-recursos,
  #informacoes-legais,
  #sobre-home {
    padding: 3em 1.5em;
  }

  .grid-servicos,
  .grid-informacoes {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .conteudo-sobre-home h2 {
    font-size: 2em;
  }

  .conteudo-sobre-home p {
    font-size: 1.1em;
  }

  .botoes-sobre-home {
    flex-direction: column;
  }

  .btn-sobre,
  .btn-buscar-sobre {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 550px) {
  #servicos-recursos,
  #informacoes-legais {
    padding: 2em 1em;
  }

  .card-servico,
  .card-informacao {
    padding: 1.5em;
  }

  .conteudo-sobre-home h2 {
    font-size: 1.8em;
  }

  .conteudo-sobre-home p {
    font-size: 1em;
  }
}