body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #e6e6e6;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  background-color: rgba(0, 0, 0, .87);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.btn-custom:focus,
.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-item img:focus {
  box-shadow: none;
  outline: none;
}

.logo {
  height: 70px;
}



.header .nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}



.cta-buttons {
  text-align: center;
  margin-top: 30px;
}

.cta-buttons a {
  margin: 0 10px;
}

.btn-custom {
  background-color: #ff9900;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-custom:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(255, 153, 0, 0.4);
  color: #fff;
}

.btn-custom:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.header .nav ul li {
  display: inline;
}

.carousel {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.carousel-next {
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  outline: none;
}

.carousel-prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.carousel-next {
  right: 0;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

.banner-content p {
  font-size: 1.25rem;
}

.banner-content {
  text-align: center;
  padding: 50px 20px;
  background-color: #00000036;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.banner-content .btn {
  background-color: #ff9900;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-content .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(255, 153, 0, 0.4);
  color: #fff;
}

.banner-content .btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}



@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.6rem;
    /* Tamanho do título ainda menor em telas muito pequenas */
    text-align: center;
  }

  .banner-content p {
    font-size: 1.0rem;
    text-align: center;
  }

  .banner-content .btn {
    font-size: 1.0rem;
    padding: 10px 20px;
    /* Botão menor */
  }
}

.section-title {
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(0, 0, 0, .87);
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-body {
  padding: 1.5rem;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #ddd;
}

.card-title {
  color: #e5c100;
}

.card-text {
  font-size: 0.8rem;
  color: #444;
}

/* Preço Dos Imoveis */
.text-price {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Descrição dos Imóveis */
.text-description {
  font-size: 1.1rem;
  font-weight: 600;
}



/* Ajuste do Card de Produto */
.product-card {
  width: 320px;
  /* Largura fixa do card */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.34s ease-in-out;
  margin-bottom: 30px;
  border-radius: 20px;
  /* Borda arredondada */
  overflow: hidden;
  /* Evita que imagens extrapolem */
}

.modal-title {
  font-size: 1.6rem;
  color: #e5c100;
}

.product-card:hover {
  transform: scale(1.05);
  /* Efeito de zoom ao passar o mouse */
}

/* Ajuste das Imagens dentro do Card */
.product-card .card-img-top {
  height: 200px;
  /* Altura fixa da imagem */
  object-fit: cover;
  /* Mantém proporção sem deformar */
  border-bottom: 1px solid #ddd;
  /* Linha separando a imagem */
}

/* Corpo do Card (Área das Informações) */
.product-card .card-body {
  padding: 15px;
  text-align: center;
}

.product-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Botão do Card */
.product-card .btn {
  font-size: 0.9rem;
  padding: 8px 16px;
}

/* Modal e Carrossel */
.modal-content {
  max-width: 800px;
  /* Limita a largura do modal */
  margin: auto;
}

.carousel-inner img {
  height: 450px;
  /* Tamanho maior para o carrossel */
  object-fit: cover;
  border-radius: 5px;
}

/* Informações dentro do Modal */
.product-details {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.product-details ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 10px;
}

.footer {
  background-color: #333;
  /* Cor de fundo */
}

.footer-logo {
  max-width: 200px;
  /* Ajuste conforme necessário */
}

.footer h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
}

.social-icon0 {
  display: inline-block;
  margin: 0 100px;
  transition: transform 0.2s ease-in-out;
}

.social-icon0:hover {
  transform: scale(1.1);
  /* Leve zoom ao passar o mouse */
}

.social-icon01 {
  margin: 0 10px;
  transition: transform 0.2s ease-in-out;
}

.social-icon01 :hover {
  transform: scale(1.1);
  /* Leve zoom ao passar o mouse */
}

.social-icons {
  position: absolute;
  bottom: 20px;
  /* Ajusta a margem inferior */
  left: 97%;
  flex-direction: column;
  transform: translateX(-50%);
  /* Ajusta a centralização */
  display: flex;
  gap: 5px;
  /* Espaço entre os ícones */
  justify-content: center;
}

.icon {
  width: 35px;
  height: 35px;
}

.social-icon2 {
  margin: 0 10px;
  transition: transform 0.2s ease-in-out;
}

.social-icon2 :hover {
  transform: scale(1.1);
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Botão Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 10px;
  /* Ajusta para extrema esquerda */
  z-index: 1000;
}

.hamburger .bar {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Transformação do botão ao abrir o menu */
/* Botão Hamburger */
.menu-container {
  position: relative;
  z-index: 100;
}

/* Botão Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 30px;
  cursor: pointer;
  right: 20px;
}

/* Barras do botão hamburger */
.hamburger .bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  /* Branco */
  border-radius: 2px;
}

/* Menu */
.nav-menu {
  display: none;
  position: absolute;
  top: 80px;
  border-radius: 10px;
  right: 10px;
  background-color: #333;
  width: 250px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

/* Links do menu */
.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px;
  display: block;
  font-size: 18px;
  transition: background-color 0.3s;
}

.nav-menu a:hover {
  background-color: #444;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
  }
}

/* Estilo do botão hamburguer (visível em telas pequenas) */
.navbar-toggler {
  border: none;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-color: #333;
  /* Cor do ícone do hambúrguer */
}

/* Estilo do menu de navegação */
.navbar-nav {
  list-style: none;
}

.navbar-nav .nav-item {
  margin-right: 15px;
  /* Espaçamento entre os itens do menu */
}

.navbar-nav .nav-link {
  color: #333;
  /* Cor dos links do menu */
  font-weight: bold;
}

/* Ajusta o menu para o lado direito */
.navbar-collapse {
  text-align: right;
}

/* Responsividade - Ajuste do menu para telas pequenas */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    /* Alinha os itens ao centro quando o menu for expandido */
  }

  .navbar-collapse {
    background-color: #f8f9fa;
    /* Cor de fundo para o menu expandido */
  }
}

/* Menu Lateral */
.menu {
  display: none;
  /* Esconde o menu inicialmente */
  flex-direction: column;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  width: 150px;
  height: 100vh;
  padding: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin-top: 60px;
  width: 80px;
}

.menu li {
  margin: 10px 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #FFD700;
}

.menu.active {
  display: flex;
  /* Mostra o menu quando ativo */
}

.menu {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  width: 150px;
  height: 100vh;
  padding: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin-top: 60px;
  width: 80px;
}

.menu li {
  margin: 10px 0;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #FFD700;
}

.menu.active {
  display: flex;
}

/* Estilo para a seção Sobre */
#sobre {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

#sobre .container {
  max-width: 1200px;
  margin: 0 auto;
}

#sobre h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

#sobre .container div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#sobre .container div .texto {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

#sobre .container div .texto p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #555;
}

#sobre .container div .imagem {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

#sobre .container div .imagem img {
  max-width: 100%;
  border-radius: 10px;
}

#sobre .container div .imagem p {
  font-size: 1.1em;
  margin-top: 10px;
  color: #660;
}

/* Modal de Tela Cheia */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100;
  background-color: rgba(0, 0, 0, 0.95);
  /* Fundo mais escuro */
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

/* Imagem no Modal */
.fullscreen-content img {
  max-width: 100%;
  /* Largura máxima: 100% da tela */
  max-height: 100%;
  /* Altura máxima: 100% da tela */
  width: auto;
  /* Mantém proporção */
  height: auto;
  /* Mantém proporção */
  margin: auto;
  display: block;
  border-radius: 5px;
  /* Bordas levemente arredondadas */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  /* Sombra para destacar a imagem */
}

/* Botão de Fechar */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

/* Botões de Navegação */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Transição Suave */
.fullscreen-modal.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.enlargeable-image {
  cursor: pointer;
  /* Mostra a mãozinha */
  transition: transform 0.3s ease;
}

/* Estilo para a lupa */
.fullscreen-modal img {
  cursor: zoom-in;
}

.fullscreen-modal img.zoomed {
  transform: scale(2);
  /* Aplica o zoom */
  cursor: zoom-out;
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.fullscreen-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 90%;
  overflow: hidden;
}

.fullscreen-content img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomed {
  cursor: zoom-out;
}

@media (max-width: 768px) {
  .fullscreen-content {
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Para telas menores que 768px (tablets e celulares) */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    /* Permite que os elementos do cabeçalho se ajustem em linha */
    text-align: center;
  }

  .logo {
    margin: 0 auto;
  }

  .cta-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .carousel img {
    height: auto;
    /* Permite que as imagens se ajustem proporcionalmente */
    max-height: 300px;
    /* Limita a altura em telas pequenas */
  }

  .menu {
    width: 100%;
    /* Ajusta o menu lateral para telas menores */
    padding: 20px 10px;
  }

  .menu ul {
    text-align: center;
    padding: 0;
  }

  .menu ul li {
    margin: 10px 0;
  }

  .card {
    margin-bottom: 20px;
    align-items: center;
  }

  .card img {
    height: auto;
    max-height: 200px;
    /* Ajusta a altura máxima das imagens */
  }

  /* Ajuste do Card de Produto */
  .product-card {
    width: 320px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.34s ease-in-out;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
  }

  .product-card .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  #properties .col-md-4 {
    flex: 0 0 100%;
    /* Cada card ocupa toda a largura em telas pequenas */
    max-width: 100%;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .social-icon {
    margin: 10px;
  }

}

.copy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.social-buttons {
  display: flex;
  justify-content: space-evenly;
  /* Distribui os itens igualmente */
  gap: 15px;
  /* Espaço entre os ícones */
}

.social-btn img {
  transition: transform 0.3s ease;
  /* Transição suave ao passar o mouse */
}

.social-btn img:hover {
  transform: scale(1.1);
  /* Aumenta o ícone quando o mouse passa por cima */
}

/* Ajuste do botão de copiar */
.copy-container input {
  width: 80%;
  /* Tamanho ajustado para que o botão de copiar não fique muito grande */
  padding: 8px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.copy-container button {
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 5px;
  background-color: #6c757d;
  color: white;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

#product-section h1 {
  text-align: center;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}


@media (max-width: 991px) {

  /* Aplica-se a tablets e celulares */
  #product-section h1 {
    text-align: center;
  }

  #product-section .row {
    justify-content: center;
  }

  #product-section .col-md-3 {
    display: flex;
    justify-content: center;
  }

  .card-body h5 {
    text-align: center;
  }

}

@media (min-width: 992px) and (max-width: 1366px) {

  /* Apenas para notebooks e desktops */
  .row {
    gap: 55px;
    /* Ajuste o valor conforme necessário */
    justify-content: center;
  }

  .card {
    flex-grow: 1;
  }

  #product-section h1 {
    text-align: center;
  }

}

/* Ajustes específicos para o rodapé em telas pequenas */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .col-md-4 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer .text-md-left,
  .footer .text-md-right {
    text-align: center !important;
  }

  .footer-logo {
    margin: 0 auto 20px;
    display: block;
  }
}