/* Importação das fontes */
@font-face {
  font-family: 'DarkerGrotesque-Black';
  src: url('../fonts/DarkerGrotesque-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-Bold';
  src: url('../fonts/DarkerGrotesque-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-ExtraBold';
  src: url('../fonts/DarkerGrotesque-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-Light';
  src: url('../fonts/DarkerGrotesque-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-Medium';
  src: url('../fonts/DarkerGrotesque-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-Regular';
  src: url('../fonts/DarkerGrotesque-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'DarkerGrotesque-SemiBold';
  src: url('../fonts/DarkerGrotesque-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Black';
  src: url('../fonts/InterTight-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-BlackItalic';
  src: url('../fonts/InterTight-BlackItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Bold';
  src: url('../fonts/InterTight-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-BoldItalic';
  src: url('../fonts/InterTight-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-ExtraBold';
  src: url('../fonts/InterTight-ExtraBold.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-ExtraBoldItalic';
  src: url('../fonts/InterTight-ExtraBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-ExtraLight';
  src: url('../fonts/InterTight-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-ExtraLightItalic';
  src: url('../fonts/InterTight-ExtraLightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Italic';
  src: url('../fonts/InterTight-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Light';
  src: url('../fonts/InterTight-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-LightItalic';
  src: url('../fonts/InterTight-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Medium';
  src: url('../fonts/InterTight-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-MediumItalic';
  src: url('../fonts/InterTight-MediumItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Regular';
  src: url('../fonts/InterTight-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-SemiBold';
  src: url('../fonts/InterTight-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-SemiBoldItalic';
  src: url('../fonts/InterTight-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-Thin';
  src: url('../fonts/InterTight-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'InterTight-ThinItalic';
  src: url('../fonts/InterTight-ThinItalic.ttf') format('truetype');
}

/* Geral */
body {
  font-family: 'InterTight-Regular', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #ffffff;
}

h1 {
  color: #00274d;
}

h2 {
  font-size: 2.5rem;
  padding: 0.5rem 2rem 1rem 2rem;
  font-family: "DarkerGrotesque-black", sans-serif;
  text-align: center;
  margin: 0 auto;
  display: table;
  line-height: 2.5rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.8rem;
  color: #333;
  font-family: 'InterTight-Regular', sans-serif;
  margin-bottom: 0;
  width: 80%;
}

/* Header */
header {
  background-color: #00274d;
  padding: 1rem 0;
  color: white;
  position: relative;
  height: 6.5rem;
}

.navbar-brand {
  position: absolute;
  top: 90%;
  left: 3%;
  height: auto;
  transform: translateY(-50%);
  z-index: 10;
}

.navbar-brand img {
  max-width: 80%;
}

nav.navbar {
  display: flex;
  align-items: center;
  top: 0.5rem;
}

ul.navbar-nav {
  padding-right: 5rem;
}

.navbar-nav .nav-link {
  color: #fff;
  /* Branco por padrão */
  font-size: 1rem;
  margin: 0 1rem;
  padding: 0.35rem 1rem 0.35rem 1rem !important;
  transition: all 0.3s ease;
  font-family: 'InterTight-Light', sans-serif;
  background-color: transparent;
  /* Fundo vermelho para item ativo */
  border-bottom: 0.5rem solid #00274d !important;
}

.nav-link:focus,
.nav-link:active,
.nav-link:visited,
.nav-link:hover {
  color: #FFFFFF !important;
}

.navbar-nav .nav-link:hover {
  background-color: #d22323;
  /* Fundo vermelho no hover */
  color: #fff;
  padding: 0.35rem 1rem 0.35rem 1rem;
  border-bottom: 0.5rem solid #00274d !important;
}

.navbar-nav .nav-link.active {
  color: #fff;
  background-color: transparent;
  /* Fundo vermelho para item ativo */
  border-bottom: 0.5rem solid #d22323 !important;
  font-family: 'InterTight-Bold', sans-serif;
  padding: 0.35rem 1rem 0.35rem 1rem;
}

/* Navbar com comportamento fixo e centralizado */
.navbar {
  transition: all 0.3s ease;
  background-color: #00274d;
  /* Fundo azul */
  padding: 15px 0;
  /* Espaçamento padrão */
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #00274d;
  /* Fundo azul fixo */
  z-index: 2000;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  /* Sombra */
}

.navbar.scrolled .navbar-brand {
  position: relative;
  top: 30px;
}

.navbar.scrolled .navbar-brand img {
  transition: height 0.3s ease;
  height: 65px;
  /* Altura da logomarca ao rolar */
}

/* Ícone Flutuante do WhatsApp */
.whatsapp-float {
  position: absolute;
  top:72%;
  right: 0!important;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60%;
}


/* Section SLIDES */
/* Altura e alinhamento do carrossel */
#slides slide .carousel-inner {
  height: 100%;
}

#slides .carousel-inner .container {
  width: 1320px;
  position: relative;
  height: 600px;
}

/* Definições de animações */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50%); /* Começa da direita */
    }
    to {
      opacity: 1;
      transform: translateX(0); /* Fica na posição original */
    }
}
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50%); /* Começa da direita */
    }
    to {
      opacity: 1;
      transform: translateX(0); /* Fica na posição original */
    }
}

  @keyframes zoomOut {
    from {
      opacity: 0;
      transform: scale(2);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50%); /* Fora da tela, à esquerda */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* Posição original */
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8); /* Tamanho menor no início */
  }
  to {
    opacity: 1;
    transform: scale(1); /* Tamanho normal no final */
  }
}

@keyframes slideDown {
  from {
    top: -50%; /* Posição inicial, fora da tela */
    opacity: 0; /* Invisível no início */
  }
  to {
    top: 50%; /* Posição final */
    opacity: 1; /* Totalmente visível */
  }
}


/* Estilos para os slides */
.slide1 {
  background-color: #F5F5F5;
  background-image: url('../imagens/slide-victoria-foz.png');
  background-size: 100%;
  background-position: top center;
  position: relative;
  background-repeat: no-repeat;
}

.slide1 img.logo {
  position: absolute;
  width: 100px;
  left: 24%;
  top: 50%;
  opacity: 0; /* Invisível no início */
  transform: translateX(-50%); /* Começa fora da tela, à esquerda */
  animation: slideInLeft 0.8s ease-out 1.5s forwards; /* Efeito de deslizamento */
}

.slide1 img.e {
  position: absolute;
  width: 110px;
  top: 80px;
  right: 38%;
  opacity: 0; /* Invisível no início */
  transform: scale(0.8); /* Começa com tamanho reduzido */
  animation: zoomIn 0.5s ease-out 1s forwards; /* Animação de zoom in adicionada */
}

.slide1 h1 {
  color: #FFFFFF !important;
  position: absolute;
  font-family: 'InterTight-Bold', sans-serif;
  top: 70px;
  right: 26%;
  text-align: right;
  font-size: 29px;
  opacity: 0; /* Invisível no início */
  transform: scale(2); /* Inicia com zoom maior */
  animation: zoomOut 0.5s ease-out 1s forwards; /* Efeito de zoom out com atraso */
}

.slide1 p {
  position: absolute;
  color: #FFFFFF !important;
  width: 174px;
  text-align: right;
  right: 29%;
  top: 220px;
  line-height: 1.5rem;
  opacity: 0; /* Invisível no início */
  transform: scale(0.8); /* Começa com tamanho reduzido */
  animation: slideInRight 1s ease-out 1s forwards; /* Animação ao carregar */
}

.slide1 span {
  color: #FFFFFF!important;
  font-family: 'InterTight-Black', sans-serif;
}

.slide1 a.btn-foz {
    position: absolute;
    color: #FFFFFF !important;
    background: #96050C;
    border-radius: 0 !important;
    right: 29%;
    top: 310px;
    padding: 10px 15px;
    font-size: 1rem;
    opacity: 0; /* Invisível no início */
    transform: scale(0.8); /* Começa com tamanho reduzido */
    animation: slideInRight 1s ease-out 1s forwards; /* Animação ao carregar */
}

.slide1 a.btn-foz:hover {
  background: #790006;
}


.slide2 {
  background-color: #F5F5F5;
  background-image: url('../imagens/slide-victoria-encarnacion.png');
  background-size: 100%;
  background-position: top center;
  position: relative;
  background-repeat: no-repeat;
}

.slide2 img.logo {
  position: absolute;
  width: 160px;
  left: 17%;
  top: 50%;
  opacity: 0; /* Invisível no início */
  transform: scale(0.8); /* Começa com tamanho reduzido */
  animation: slideInRight 1s ease-out 1s forwards; /* Animação ao carregar */
}

.slide2 img.e {
  position: absolute;
  width: 110px;
  top: 80px;
  right: 34%;
  opacity: 0; /* Invisível no início */
  transform: scale(0.8); /* Começa com tamanho reduzido */
  animation: zoomIn 0.5s ease-out 1s forwards; /* Animação de zoom in adicionada */
}

.slide2 h1 {
  color: #FFFFFF !important;
  position: absolute;
  font-family: 'InterTight-Bold', sans-serif;
  top: 70px;
  right: 23%;
  text-align: right;
  font-size: 29px;
  opacity: 0; /* Invisível no início */
  transform: scale(2); /* Inicia com zoom maior */
  animation: zoomOut 0.5s ease-out 1s forwards; /* Efeito de zoom out com atraso */
}

.slide2 p {
  position: absolute;
  color: #0B3568 !important;
  width: 174px;
  text-align: left;
  left: 20%;
  top: 120px;
  line-height: 1.5rem;
  opacity: 0; /* Invisível no início */
  transform: translateX(-50%); /* Começa fora da tela, à esquerda */
  animation: slideInLeft 0.8s ease-out 1s forwards; /* Efeito de deslizamento */
}

.slide2 span {
  color: #0B3568!important;
  font-family: 'InterTight-Black', sans-serif;
}

.slide2 a.btn-encarnacion {
    position: absolute;
    color: #FFFFFF !important;
    background: #96050C;
    border-radius: 0 !important;
    left: 20%;
    top: 230px;
    padding: 10px 15px;
    font-size: 1rem;
    opacity: 0; /* Invisível no início */
    transform: translateX(-50%); /* Começa fora da tela, à esquerda */
    animation: slideInLeft 0.8s ease-out 1s forwards; /* Efeito de deslizamento */
}

.slide2 a.btn-encarnacion:hover {
  background: #790006;
}

/* Definição de animações */
.slide3 {
  background-color: #F5F5F5;
  background-image: url('../imagens/slide-portal-da-lagoa.png');
  background-size: 100%;
  background-position: top center;
  position: relative;
  background-repeat: no-repeat;
}

.slide3 .paragrafo {
  color: #FFFFFF !important;
  position: absolute;
  font-family: 'InterTight-Regular', sans-serif;
  top: 99px;
  left: 20%;
  text-align: left;
  font-size: 29px;
  opacity: 0; /* Invisível no início */
  animation: fadeIn 0.7s ease-out 0.5s forwards; /* Animação adicionada */
}

.slide3 img.e {
  position: absolute;
  width: 110px;
  top: 53px;
  right: 30%;
  opacity: 0; /* Invisível no início */
  transform: scale(0.8); /* Começa com tamanho reduzido */
  animation: zoomIn 0.5s ease-out 1s forwards; /* Animação de zoom in adicionada */
}

.slide3 h1 {
  color: #FFFFFF !important;
  position: absolute;
  font-family: 'InterTight-Bold', sans-serif;
  top: 99px;
  right: 19%;
  text-align: left;
  font-size: 29px;
  opacity: 0; /* Invisível no início */
  transform: scale(2); /* Inicia com zoom maior */
  animation: zoomOut 0.5s ease-out 1s forwards; /* Efeito de zoom out com atraso */
}

.slide3 p {
  position: absolute !important;
  color: #FFFFFF !important;
  width: 174px;
  text-align: right;
  right: 18.5%;
  top: 288px;
  line-height: 1.5rem;
  opacity: 0; /* Invisível no início */
  transform: translateX(-50%); /* Começa fora da tela, à esquerda */
  animation: slideInLeft 0.8s ease-out 1.5s forwards; /* Efeito de deslizamento */
}

.slide3 span {
  color: #FFFFFF!important;
  font-family: 'InterTight-Black', sans-serif;
}

.slide3 .paragrafo-esq p.txt-esq {
  position: absolute !important;
  width: 200px;
  text-align: right;
  left: 23%;
  top: 192px;
  font-family: 'DarkerGrotesque-Bold', sans-serif;
  font-size: 1.5rem;
  opacity: 0; /* Invisível no início */
  animation: slideInRight 0.7s ease-out 1s forwards; /* Animação adicionada *//* Animação adicionada */
}

.slide3 .paragrafo-esq p.inova {
  position: absolute !important;
  color: #FF3131 !important;
  font-family: 'DarkerGrotesque-Black', sans-serif;
  font-size: 7rem;
  width: 250px;
  text-align: left;
  left: 20%;
  top: 219px;
  text-shadow: 0 0px 25px black;
  opacity: 0; /* Invisível no início */
  animation: slideInRight 0.7s ease-out 1s forwards; /* Animação adicionada */
}

.slide3 .paragrafo-esq p.txt-esq-bottom {
  position: absolute !important;
  width: 250px;
  text-align: left;
  left: 20%;
  top: 280px;
  font-family: 'DarkerGrotesque-Bold', sans-serif;
  text-align: left;
  font-size: 1.5rem;
  opacity: 0; /* Invisível no início */
  animation: slideInRight 0.3s ease-out 1s forwards; /* Animação adicionada */
}

.slide3 a.btn-contato {
  position: absolute;
  color: #FFFFFF !important;
  background: #96050C;
  border-radius: 0 !important;
  right: 18%;
  top: 400px;
  padding: 10px 15px;
  font-size: 1rem;
  opacity: 0; /* Invisível no início */
  transform: translateX(-50%); /* Começa fora da tela, à esquerda */
  animation: slideInLeft 0.8s ease-out 1.5s forwards; /* Efeito de deslizamento */
}

.slide3 a.btn-contato:hover {
  background: #790006;
}

/* Estilo para o conteúdo do slide */
.carousel-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

/* Indicadores (bullets) com padding adicional */
.carousel-indicators [data-bs-target] {
  padding: 0;
  width: 12px!important;
  height: 12px!important;
  margin: 0 6px;
  border-radius: 50%;
}

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

.slide .carousel-control-prev-icon {
  background: transparent url('../imagens/SETA-SLIDES-esquerda.png') no-repeat center;
  background-size: 80% auto !important;
  width: 70px;
  height: 140px;
  filter: opacity(1)!important;
}

.slide .carousel-control-next-icon {
  background: transparent url('../imagens/SETA-SLIDE-direita.png') no-repeat center center;
  background-size: 80% auto !important;
  width: 70px;
  height: 140px;
  filter: opacity(1)!important;
}

.slide .carousel-control-next, .slide .carousel-control-prev {
  position: absolute;
  top: 35%;
  align-items: baseline;
  justify-content: center;
}

.slide button.carousel-control-next,
.slide button.carousel-control-prev {
  background: transparent;
}


/* Section EMPRESA */
/* Estilo Geral da Seção Empresa */
#empresa {
  background-color: #f5f5f5;
  /* Fundo cinza */
  padding: 9rem 0 0 0;
  /* Espaçamento superior e inferior */
}

/* Título Principal */
#empresa h2 {
  border: 1px solid #00193D;
  /* Borda preta */
  color: #00193D;
  /* Cor de texto escuro */
}

/* Span Dentro de col-md-6 */
#empresa span.nome {
  display: block;
  /* Cada span ocupa uma linha */
  font-size: 2.5rem;
  /* Tamanho 58px */
  font-family: "DarkerGrotesque-Regular", sans-serif;
  /* Fonte DarkerGrotesque-bold */
  color: #00193D;
  /* Cor escura */
  text-align: right;
  line-height: 2.5rem;
}

#empresa span.titulo {
  font-family: "DarkerGrotesque-Bold", sans-serif;
  /* Fonte DarkerGrotesque-bold */
  color: #FF3131;
  /* Cor vermelha */
  text-align: right;
  line-height: 2.5rem;
  display: block;
  /* Cada span ocupa uma linha */
  font-size: 2.5rem;
  /* Tamanho 58px */
}

/* Parágrafos */

/* Títulos Secundários */
#empresa h3 {
  font-size: 1.75rem;
  color: #FFFFFF;
  font-family: "DarkerGrotesque-medium", sans-serif;
  margin: 0 1rem 1rem 1rem;
  background: #01183d;
  padding: 0.5rem 1rem 0.75rem 1rem;
}

#empresa h3 span {
  color: #FF3131;
  font-family: "DarkerGrotesque-ExtraBold", sans-serif;
}

/* Listas */
#empresa ul {
  padding: 0 2rem 1rem 2rem;
}

#empresa ul li {
  font-size: 1rem;
  /* Tamanho do texto */
  color: #333;
  /* Cinza escuro */
  font-family: "InterTight-Light", sans-serif;
  /* Fonte Inter padrão */
  list-style: none;
}

#empresa ul li span {
  font-size: 1.5rem;
  /* Tamanho do texto */
  color: #FF3131;
  /* Cinza escuro */
  font-family: "DarkerGrotesque-Regular", sans-serif;
  /* Fonte Inter padrão */
  display: block;
}

/* Section DIFERENCIAIS */
#diferenciais {
  background: url("../imagens/fundo-cinza-diferenciais.png") top center repeat-x;
  padding: 9rem 0 6rem 0;
  /* Espaçamento superior e inferior */
  position: relative;
}

/* Título Principal */
#diferenciais h2 {
  border: 1px solid #FF3131;
  /* Borda preta */
  color: #FF3131;
  /* Cor de texto escuro */
  background: #FFFFFF;
  margin: 0.5rem auto 1rem auto;
}

#diferenciais .itens {
  text-align: center;
  padding: 0 3rem;
}

#diferenciais .itens span {
  background: #00193D;
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  width: 4rem;
  height: 4rem;
  color: #FFFFFF;
  margin: 2.5rem auto 1rem auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
}

#diferenciais .itens h3 {
  font-size: 1.5rem;
  /* Tamanho do texto */
  color: #FF3131;
  /* Cinza escuro */
  font-family: "DarkerGrotesque-Regular", sans-serif;
  /* Fonte Inter padrão */
  display: block;
}

#diferenciais .itens p {
  font-size: 1rem;
  /* Tamanho do texto */
  color: #333;
  /* Cinza escuro */
  font-family: "InterTight-Light", sans-serif;
  /* Fonte Inter padrão */
  list-style: none;
  width: 100%;
}


/* Section EMPREENDIMENTOS */
/* Estilos específicos para a seção de empreendimentos */
#empreendimentos {
  padding: 7rem 0 0 0;
  background-color: #f5f5f5;
  /* Fundo cinza */
  text-align: center;
  /* Centraliza o título */
}

#empreendimentos h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00193D;
  display: block;
}

.empreendimentos-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* Centraliza os cartões horizontalmente */
  align-items: center;
  /* Alinha os cartões verticalmente */
  flex-wrap: wrap;
  /* Garante que os cartões se ajustem em telas menores */
}

.empreendimento.esquerdo {
  display: flex;
  justify-content: end;
}

.esquerdo .conteudo-card {
  width: 625px;
  height: 632px;
  background: url(../imagens/fundo-empreendimento-foz.png);
  background-size: 550px auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.empreendimento.direito {
  display: flex;
  justify-content: baseline;
}

.direito .conteudo-card {
  width: 625px;
  height: 632px;
  background-image: url(../imagens/fundo-empreendimento-encarnacion.png);
  justify-content: end;
  background-size: 550px auto;
  background-position: top center;
  background-repeat: no-repeat;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  background: transparent !important;
  border: none !important;
}

.card .esquerdo {
  text-align: right !important;
}

.card .direito {
  text-align: left !important;
}

.conteudo-card {
  display: flex;
  align-items: flex-start;
}

.tag.andamento {
  font-size: 10px;
  margin-left: 40px;
  padding: 5px 10px;
  background: #ffa500;
  display: inline-block;
  color: #FFFFFF;
  font-weight: bold;
}

.tag.pronto {
  font-size: 10px;
  margin-right: 40px;
  padding: 5px 10px;
  background: #008000;
  display: inline-block;
  color: #FFFFFF;
  font-weight: bold;
}

.esquerdo .texto {
  padding-top: 35px;
  text-align: left;
  padding-left: 45px;
  width: 55%;
}

.direito .texto {
  padding-top: 35px;
  width: 61%;
  text-align: right;
  padding-right: 45px;
}

.esquerdo .texto h5 {
  font-size: 2.025rem;
  margin-left: 40px;
  color: #333;
  font-family: "DarkerGrotesque-Medium", sans-serif;
  /* Fonte Inter padrão */
}

.direito .texto h5 {
  font-size: 2.025rem;
  margin-right: 40px;
  color: #333;
  font-family: "DarkerGrotesque-Medium", sans-serif;
  /* Fonte Inter padrão */
}

.direito .texto p.localizacao {
  font-size: 14px;
  color: #939393;
  margin-bottom: 15px;
  line-height: 18px;
  padding-left: 75px;
  text-align: left;
}

.esquerdo .texto p.localizacao {
  font-size: 14px;
  color: #939393;
  margin-bottom: 15px;
  line-height: 18px;
  padding-left: 40px;
}

.descricao {
  font-size: 0.9rem;
  margin: 28px 0 40px 0 !important;
  color: #000;
  font-family: "InterTight-Regular", sans-serif;
  text-align: center;
}

.esquerdo .descricao {
  margin-left: 20px !important;
}

.direito .descricao {
  margin-left: 40px !important;
}

.esquerdo .texto ul.detalhes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 40px !important;
}

.direito .texto ul.detalhes {
  list-style: none;
  padding: 0;
  margin-left: 5rem;
}

.detalhes li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icone {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.icone.sala {
  background-image: url('../imagens/icones-caracterisicas/sala.png');
}

.icone.banheiro {
  background-image: url('../imagens/icones-caracterisicas/banheiro.png');
}

.icone.quartos {
  background-image: url('../imagens/icones-caracterisicas/quarto.png');
}

.icone.cozinha {
  background-image: url('../imagens/icones-caracterisicas/cozinha.png');
}

.icone.servico {
  background-image: url('../imagens/icones-caracterisicas/area-de-servico.png');
}

.icone.festas {
  background-image: url('../imagens/icones-caracterisicas/salao-de-festas.png');
}

.saiba-mais {
  display: inline-block;
  padding: 10px 40px;
  color: #FF3131;
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
}

.direito .saiba-mais {
  float: left;
  padding-left: 5rem;
}

.saiba-mais:hover {
  color: #cc0000;
}

.imagem {
  flex: 1;
  text-align: right;
}

.imagem img {
  max-width: 100%;
  border-radius: 10px;
}

/* Section CONTATO */
#fale-conosco {
  padding: 9rem 0 18rem 0;
  background-color: #fff;
  position: relative;
}

#fale-conosco h2 {
  border: 1px solid #00193D!important;
  /* Borda preta */
  color: #00193D!important;
  /* Cor de texto escuro */
}

.contato-conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 2rem 0 0 0;
}

.contato-conteudo .texto {
  flex: 1;
  max-width: 40%;
}

.contato-conteudo .texto p {
  font-size: 1.1rem;
  color: #00193D;
  margin-bottom: 27px;
  line-height: 1.5rem;
  font-family: "InterTight-Light", sans-serif;
}

.contato-conteudo .texto p span {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #00193D;
  margin-bottom: 15px;
}

.contato-conteudo .texto .simulacao {
  color: #FF3131;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 55%;
  z-index: 1000;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form .form-group>input,
.contact-form .form-group>textarea {
  background: #f5f5f5;
  border: none;
  color: #666;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

.contact-form .form-group>textarea {
  resize: none;
  height: 100px;
}

.contact-form .form-group.flex-row {
  display: flex;
  gap: 10px;
}

.contact-form .form-group.flex-row>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form label {
  font-size: 14px;
  color: #333;
}

.contact-form .form-control::-webkit-input-placeholder {
  color: #939393;
  font-size: 14px;
}

.contact-form .form-control::-moz-placeholder {
  color: #939393;
  font-size: 14px;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #939393;
  font-size: 14px;
}

.contact-form .form-control:-moz-placeholder {
  color: #939393;
  font-size: 14px;
}

.contact-form .form-control {
  background: #f5f5f5;
  border: none;
}

.btn-enviar {
  background-color: #d22323;
  border: 1px solid #d22323;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  width: 6rem;
}

.btn-enviar:hover {
  background-color: #FFFFFF;
  color: #d22323;
  border: 1px solid #d22323;
}

/* Section FOOTER */

footer.rodape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 3000 !important;
  height: 18rem;
}

.rodape {
  background: url('../imagens/fundo-rodape.png') no-repeat center center;
  background-size: cover;
  text-align: center;
}

.rodape .container {
  margin: 0 auto;
  padding-top: 12rem;
}

.rodape .logo {
  display: flex;
  justify-content: left;
  align-items: center;
}

.rodape .logo img {
  max-width: 150px;
}

.rodape .copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

.rodape p {
  font-size: 14px;

}

.rodape .redes {
  display: flex;
  justify-content: right;
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  width: 46px;
  height: 46px;
  text-align: center;
}

.social-icons a.facebook {
  background: url('../imagens/ico-facebook.png') no-repeat center center;
}

.social-icons a.facebook:hover {
  background: url('../imagens/ico-facebook-on.png') no-repeat center center;
}

.social-icons a.whatsapp {
  background: url('../imagens/ico-whatsapp.png') no-repeat center center;
}

.social-icons a.whatsapp:hover {
  background: url('../imagens/ico-whatsapp-on.png') no-repeat center center;
}

.social-icons a.telefone {
  background: url('../imagens/ico-fone.png') no-repeat center center;
}

.social-icons a.telefone:hover {
  background: url('../imagens/ico-fone-on.png') no-repeat center center;
}

.social-icons a.instagram {
  background: url('../imagens/ico-instagram.png') no-repeat center center;
}

.social-icons a.instagram:hover {
  background: url('../imagens/ico-instagram-on.png') no-repeat center center;
}

/* INTERNA */

#inicio .navbar .navbar-brand-interna {
  position: relative;
  top: 0!important;
}

#inicio .navbar .navbar-brand-interna img {
  transition: height 0.3s ease;
  height: 65px!important;
  /* Altura da logomarca ao rolar */
}

#resumo {
  position: relative;
  top: 30px;
}

#resumo .foto img {
  max-width: 100%;
  border-radius: 0;
}

#resumo .texto {
  position: relative;
  text-align: left;
  margin-top: 70px !important;
}

#resumo .texto img {
  position: absolute;
  width: 150px;
  top: 0;
  left: -40px;
  z-index: 1000;
}

#resumo .texto p.introducao {
  font-size: 1.75rem;
  line-height: 2.5rem;
  margin: 5px 0 50px 140px;
  font-family: "InterTight-Light", sans-serif;
  padding-right: 40px;
  width: 80%;
}

#resumo .texto p span {
  font-family: "InterTight-Bold", sans-serif;
  /* Fonte Inter padrão */
}

#resumo .texto p {
  font-size: 1rem;
  line-height: 2rem;
  font-family: "InterTight-Light", sans-serif;
  width: 100%;
  margin-bottom: 2rem;
}

#resumo .texto .box {
  color: #FFFFFF;
  background: #96050C;
  padding: 30px 40px 10px 40px;
  position: absolute;
  left: -30px;
}

#resumo .texto .box p {
  color: #FFFFFF;
}

#imagens {
  color: #E4E4E4;
  padding: 130px 0 0 0;
}

#imagens h2 {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-family: "DarkerGrotesque-Medium", sans-serif;
  /* Fonte Inter padrão */
  color: #12564a;
}

#imagens h2 img {
  margin: 15px 0 0 10px;
}

#imagens p {
  font-size: 0.95rem;
  color: #666666;
}

img.img-fluid:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
  opacity: 0.5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  /* Torna as setas brancas */
  width: 30px;
  height: 30px;
}

/* Estilo para a modal */

.modal-dialog {
  max-width: 800px !important;
  margin: 40px auto 0 auto!important;
}

.modal-content {
  border: none;
  border-radius: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 60px !important;
  background-color: #fff;
  position: relative;
}

/* Botão de fechar personalizado */
.modal .btn-close {
  font-size: 2.5rem;
  color: #00000083;
  opacity: 1;
  transition: transform 0.2s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-weight: 100;
}

.modal .btn-close:hover {
  transform: scale(1.2);
  color: #d22323;
  /* Cor ao passar o mouse */
}

.modal .carousel-control-next-icon,
.modal .carousel-control-prev-icon {
  width: 5rem !important;
  height: 5rem !important;
}

.modal button.carousel-control-next,
.modal button.carousel-control-prev {
  background: transparent;
  color: #000;
  opacity: 0.5;
}

.modal button.carousel-control-next:hover,
.modal button.carousel-control-prev:hover {
  background:transparent;
  opacity: 1;
}

.modal button.carousel-control-next:focus,
.modal button.carousel-control-prev:focus {
  background:transparent;
  opacity: 1;
}

/* Estilos Gerais */
#comodidades {
  background-color: #fff;
}

#comodidades h2 {
  color: #276648;
  /* Cor de texto escuro */
  margin: 0.5rem auto 1rem auto;
}

.titulo-comodos {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #276648;
  margin-bottom: 20px;
}

/* Cômodos (Esquerda) */
.box-comodos {
  border: 1px solid #276648;
  border-radius: 8px;
}

.lista-comodos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-comodos li {
  display: flex;
  align-items: center;
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  color: #276648;
  margin-bottom: 5px;
}

.lista-comodos li img {
  margin-right: 10px;
  padding: 4px;
  width: 53px;
  height: 53px;
}

/* Características (Direita) */

.lista-caracteristicas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box-caracteristicas h3 {
  font-size: 28px;
  color: #215E54;
  padding: 0.5rem 2rem 1rem 2rem;
  font-family: "DarkerGrotesque-Medium", sans-serif;
  display: table;
  border-bottom: 1px solid #FF3131;
  width: 100%;
  padding: 0 0 6px 0;
  margin: 40px 0;
}

.lista-caracteristicas li {
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 14px;
  color: #000000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.lista-caracteristicas li::before {
  content: "●";
  color: #FFFFFF;
  border: 3px solid #ff3131;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 1.5px;
  margin-top: 0px !important;
}

#estagio-obra {
  margin-top: 2rem;
}

#estagio-obra h2 {
  color: #FFFFFF;
  /* Cor de texto escuro */
  background: #276648;
  margin: 0.5rem auto 1rem auto;
  position: relative
}

#estagio-obra .linha-obra {
  position: relative;
}

#estagio-obra .linha-obra hr {
  position: absolute;
  color: #ff3131;
  width: 100%;
  height: 1px;
  opacity: 1;
  top: 15px;
}

/* Título com Fundo Verde 
.titulo-wrapper {
  display: inline-block;
  background-color: #276648;
  color: #fff;
  padding: 10px 30px;
  font-family: 'Darker Grotesque', sans-serif;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
}

.titulo-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #d22323;
  position: absolute;
  bottom: -10px;
  left: 0;
}*/

.texto-inicio {
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  color: #888;
  margin-top: 15px;
  width: 100%;
}

.texto-inicio span {
  color: #000000;
}

/* Abas */
#obraTabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #FF3131 !important;
  background-color: #eee !important;
  border-color: #eee !important;
  border-radius: 0 !important;
  font-weight: 900;
}

#estagio-obra .tab-content {
  background: #EEE !important;
  height: 372px !important;
  padding: 1rem 2.5rem;
}

#estagio-obra .nav-tabs {
  border-bottom: none;
}

#estagio .descricao {
  margin: 2rem 0 0.5rem 0 !important;
}

#estagio .evolucao {
  display: inline-block;
}

#estagio .evolucao .descricao {
  color: #286648;
  font-size: 20px;
  font-family: "DarkerGrotesque-Medium", sans-serif;
}

.evolucao .progress {
  overflow: visible !important;
  /* Permite que elementos filhos "transbordem" */
  position: relative !important;
  width: 84% !important;
  margin-top: 30px !important;
}

.evolucao .progress-bar {
  background-color: #276648;
  /* Cor da barra de progresso */
  height: 100%;
  position: relative;
  z-index: 1;
  /* Mantém a barra visível acima de outros elementos */
}

.evolucao .progress-bullet {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
  /* Garante que a bolinha fique acima da barra */
}

#estagio .vermelho .porcentagem {
  color: #000000;
  font-size: 20px;
}

#estagio .vermelho .descricao {
  color: #FF3131;
  font-size: 20px;
  font-family: "DarkerGrotesque-Medium", sans-serif;
}

.vermelho .progress {
  overflow: visible !important;
  /* Permite que elementos filhos "transbordem" */
  position: relative !important;
  width: 100% !important;
  margin-top: 5px !important;
}

.vermelho .progress-bar {
  background-color: #FF3131;
  /* Cor da barra de progresso */
  height: 100%;
  position: relative;
  z-index: 1;
  /* Mantém a barra visível acima de outros elementos */
}

.vermelho .progress-bullet {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
  /* Garante que a bolinha fique acima da barra */
}

#estagio .vermelho .porcentagem {
  color: #000000;
  font-size: 18px;
  font-family: "DarkerGrotesque-Light", sans-serif;
}

.progress-section .porcentagem {
  margin: 2rem 0 0.5rem 0 !important;
  color: #000000;
}

.progress-section .progress {
  height: 4px;
  background-color: #dee2e6;
  border-radius: 4px;
}

.nav-tabs .nav-link {
  font-family: 'InterTight-Light', sans-serif !important;
  color: #888;
  padding: 10px 20px;
  text-align: left;
  border: 1px solid #eeeeee !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  /* border-color: #e9ecef #e9ecef #dee2e6; */
  /* isolation: isolate; */
  color: #FF3131 !important;
}

/* Barras de Progresso */
.progress-section .descricao {
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  color: #888;
}

.progress-section .porcentagem {
  font-family: 'InterTight-Black', sans-serif;
  font-size: 1rem;
  color: #276648;
}

.progress-section .progress-bar {
  border-radius: 4px;
}

/* GALERIA */
#fotos .carousel-item {
  padding: 0 4rem;
  text-align: center;
}

#fotos .carousel-item div {
  float: left;
  text-align: center;
  margin: 0.5rem 0;
}

#fotos .carousel-item img {
  max-width: 90%;
  margin: 0 auto !important;
}

#fotos .carousel-item span {
  font-family: Arial;
  font-size: 0.65rem;
  text-transform: uppercase;
}

#fotos .carousel-control-prev-icon {
  background: #CCC url(../imagens/SETA-SLIDES-esquerda.png) no-repeat center;
  background-size: 80% auto !important;
  width: 50px;
  height: 100px;
  filter: opacity(1) !important;
  position: absolute;
}

#fotos .carousel-control-next-icon {
  background: #CCC url(../imagens/SETA-SLIDE-direita.png) no-repeat center;
  background-size: 80% auto !important;
  width: 50px;
  height: 100px;
  filter: opacity(1) !important;
  position: absolute;
}

#fotos .carousel-control-prev {
  position: absolute;
  margin-left: -3rem;
  top: 30%;
  }

#fotos .carousel-control-next {
  position: absolute;
  margin-right: -1.65rem;
  top: 30%;
}

.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.gallery-item {
  text-align: center;
  flex: 0 0 300px;
  /* Cada item ocupa 300px de largura */
  margin: 0 10px;
}

.gallery-item span {
  display: block;
  font-size: 0.8rem;
}

.gallery-wrapper {
  display: flex;
  overflow: hidden;
  /* Esconde itens fora do container */
  width: calc(300px * 3 + 20px * 2);
  /* Ajusta para caber os itens visíveis */
}

.gallery {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Transição suave */
}

.gallery-button {
  font-size: 2rem;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
}

.gallery-button img {
  width: 50px;
  /* Tamanho fixo para as setas */
  height: auto;
}

button#nextBtn {
  margin-left: 20px;
}

/* VIDEO */
.video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 1.5rem!important;
}

.video-item img {
  width: 400px;
  height: auto;
  border-radius: 5px;
}

.video-item {
  text-align: center;
  margin: 0 30px;
}

.video-item span {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.video-wrapper {
  display: flex;
  overflow: hidden;
  /* Esconde itens fora do container */
  width: calc(300px * 3 + 20px * 2);
  /* Ajusta para caber os itens visíveis */
  justify-content: center;
}

.video {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Transição suave */
  justify-content: center;
}

/* Estilos Gerais */
#rooftop {
  background-color: #fff;
  margin-top: 40px;
}

#rooftop .linha-obra {
  position: relative;
}

#rooftop h2 {
  color: #276648;
  /* Cor de texto escuro */
  background: #FFFFFF;
  margin: 0.5rem auto 1rem auto;
  position: relative;
  font-size: 24px;
  border: 1px solid #FF3131;
}

#rooftop img {
  max-width: 80%;
}

/*.titulo-wrapper {
  display: inline-block;
  background-color: #276648;
  padding: 5px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.titulo-rooftop {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}*/

.descricao-rooftop p {
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin: 30px auto 0 auto;
  width: 60%;
}

.descricao-rooftop p strong {
  font-family: 'InterTight-Black', sans-serif;
  font-weight: bold;
  color: #333;
}

/* Imagem */
.planta-rooftop {
  width: 100%;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilos Gerais */
#plantas {
  background-color: #fff;
  margin-top: 40px;
}

#plantas .linha-obra {
  position: relative;
}

#plantas h2 {
  color: #276648;
  /* Cor de texto escuro */
  background: #FFFFFF;
  margin: 0.5rem auto 1rem auto;
  position: relative;
  font-size: 24px;
  border: 1px solid #FF3131;
}

#plantas img {
  max-width: 80%;
}

/*.titulo-wrapper {
  display: inline-block;
  border: 2px solid #d22323;
  padding: 5px 20px;
  border-radius: 4px;
}

.titulo-plantas {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #276648;
  margin: 0;
}*/

.descricao-plantas p {
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin: 0 auto;
  width: 60%!important;
}

.descricao-plantas p strong {
  font-family: 'InterTight-Black', sans-serif;
  font-weight: bold;
  color: #333;
}

/* Imagem */
.planta-studios {
  width: 100%;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Seção Geral */
#localizacao-destaque {
  background-color: #276648;
  /* Verde escuro */
  padding: 40px 0 20px 0;
  color: #fff;
}

#localizacao-destaque .descricao {
  font-family: 'InterTight-Light', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: left;
  margin: 0 0 0 20px !important;
}

#localizacao-destaque .descricao strong {
  font-family: 'InterTight-Bold', sans-serif;
  font-weight: bold;
}

#localizacao-destaque .localizacao {
  font-family: 'InterTight-Light', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 2rem;
  color: #FFFFFF;
  padding: 20px 0 0 20px;
  margin-bottom: 0 !important;
  text-align: left;
}

/* Botão Depoimentos */
.btn-depoimentos {
  display: block;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  padding: 15px 20px;
  font-family: 'InterTight-Regular', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-right: 130px;
  text-align: right;
  width: 220px;
}

.btn-depoimentos:hover {
  background-color: #124c31;
  color: #FFFFFF;
}

.btn-depoimentos .destaque {
  color: #ff3131;
  font-weight: bold;
  text-shadow: 0 0 25px black;
  font-size: 1.25rem;
}

.btn-depoimentos img {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-size: contain;
  margin-right: 10px;
  position: absolute;
  top: 20px;
  left: -35px;
}

/* Estilo para o container */
#simulacao {
  padding: 0 0 14rem 0;
  background-color: #fff;
  position: relative;
}

/* Estilo para o iframe */
#simulacao iframe {
  width: 100%;
  height: 378px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#simulacao h2 {
  color: #125649;
  background: #FFFFFF;
  margin: 0.5rem auto 1rem auto;
  position: absolute;
  border: 1px solid #125649;
  top: -42px;
}

#simulacao .linha-obra {
  position: relative;
}

#simulacao .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  z-index: 1000;
}

/* MODAL DEPOIMENTOS */

.modal {
  z-index: 2000!important;
}  
/* Fundo do modal */
#depoimentosModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Fundo preto com transparência */
  /*z-index: 1000;*/
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
}

/* Conteúdo do modal */
#depoimentosModal .modal-content {
  background-color: rgba(0, 0, 0, 0.688);
  padding: 30px 30px 20px 30px!important;
  border-radius: 8px;
  width: 85%;
  max-width: 750px;
  position: relative;
  color: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
  text-align: center;
  height: 350px!important;
}

/* Título alinhado à esquerda */
#depoimentosModal .modal-content h2 {
  text-align: left;
  border-bottom: 1px solid #ffffff45;
  margin: 0;
  padding-bottom: 10px;
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  padding-left: 0;
}

/* Botão de fechar */
#depoimentosModal .modal-content .close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 3rem;
  font-weight: lighter;
  cursor: pointer;
  color: #ffffff63;
  transition: color 0.3s ease;
}

#depoimentosModal .modal-content .close:hover {
  color: #f00; /* Muda para vermelho ao passar o mouse */
}

/* Área de depoimentos */
#depoimentosModal .depoimentos-slider {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centraliza verticalmente os depoimentos */
  align-items: center; /* Centraliza horizontalmente os depoimentos */
  text-align: center; /* Centraliza o texto dos depoimentos */
  height: 100%; /* Garante que os depoimentos ocupem a área disponível */
  padding: 20px 0;
}

#depoimentosModal .depoimento {
  display: none;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
}

#depoimentosModal .depoimento p {
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 1.125rem;
  font-family: 'InterTight-Regular', sans-serif;
}

#depoimentosModal .depoimento p.cliente {
  font-size: 1rem!important;
  font-family: 'InterTight-Bold', sans-serif!important;
  margin-bottom: 0!important;
  padding-bottom: 0!important;
  line-height: 1rem;
  color: #ffffff80;
}

#depoimentosModal .depoimento p.ap {
  font-size: 0.7rem!important;
  font-family: 'InterTight-Light', sans-serif!important;
  margin-bottom: 0!important;
  text-transform: uppercase!important;
  color: #ffffff80;
}

#depoimentosModal .depoimento.active {
  display: block; /* Mostra o depoimento ativo */
  width: 100%;
}

/* Navegação lateral */
#depoimentosModal .navigation {
  position: absolute;
  top: 56%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

#depoimentosModal .navigation .nav {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 10px;
  opacity: 0.6;

}

#depoimentosModal .navigation .nav.prev {
  background-image: url('../imagens/SETA-SLIDES-esquerda.png');
  background-position-x: right !important;
}

#depoimentosModal .navigation .nav.next {
  background-image: url('../imagens/SETA-SLIDE-direita.png');
}

#depoimentosModal .navigation .nav:hover {
  opacity: 1; /* Transparência ao passar o mouse */
}

/* Responsividade */
@media (max-width: 1452px) {

  #fale-conosco {
    padding: 9rem 0 13rem 0;
  }
      
  footer.rodape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 13.5rem!important;
  }

  .rodape .container {
    padding-top: 8rem;
  }

  #simulacao {
    padding: 0 0 9rem 0;
}

}

@media (max-width: 1399px) {

  #slides .carousel-inner .container {
    height: 555px;
  }

  /* slide 1 */
  .slide1 img.logo {
    top: 50%;
  }

  .slide1 h1 {
    right: 23%;
  }

  .slide1 p {
    width: 145px;
    right: 27%;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .slide1 a.btn-foz {
      top: 53%;
      right: 27%;
      font-size: 0.8rem;
  }

  /* slide 2 */
  .slide2 img.logo {
    width: 138px;
    left: 15%;
    top: 48%;
  }

  .slide2 img.e {
    right: 32%;
  }

  .slide2 h1 {
    right: 19%;
  }

  .slide2 p {
    width: 180px!important;
    left: 18%;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .slide2 a.btn-encarnacion {
    top: 39%;
    left: 18%;
    font-size: 0.8rem;
    width: 85px;
}

/* slide 3 */
.slide3 img.e {
  right: 32%;
}

.slide3 h1 {
  top: 10%;
  right: 19%;
}

.slide3 p {
  width: 145px;
  top: 40%;
  right: 15%;
  font-size: 1rem;
  line-height: 1.25rem;
}

.slide3 .paragrafo-esq p.txt-esq {
  left: 18%;
}

.slide3 .paragrafo-esq p.inova {
  left: 15%;
}

.slide3 .paragrafo-esq p.txt-esq-bottom {
  left: 15%;
}

.slide3 a.btn-contato {
  top:57%;
  right: 15%;
  font-size: 0.8rem;
}

/* area empreendimentos */

.esquerdo .conteudo-card {
  background-size: 539px auto;
  background-position: top right;
}

.direito .conteudo-card {
  background-size: 539px auto;
  background-position: top left;
}

.card .esquerdo {
  text-align: right !important;
}

.card .direito {
  text-align: left !important;
}

.conteudo-card {
  display: flex;
  align-items: flex-start;
}

.esquerdo .texto {
  padding-top: 20px;
  padding-left: 95px;
  width: 60%;
}

.direito .texto {
  padding-top: 20px;
  width: 69%;
  padding-right: 95px;
}

.esquerdo .texto h5 {
  font-size: 1.85rem;
  margin-top: 12px;
}

.direito .texto h5 {
  font-size: 1.85rem;
  margin-top: 12px;
}

.descricao {
  margin-bottom:20px!important;
}

/* area formulario */
.contato-conteudo .texto p {
  width: 100%;
}

/* area internas */
#resumo .texto p.introducao {
  font-size: 1.5rem;
}

#resumo .texto p {
  line-height: 1.75rem;
}

#resumo .texto {
  margin-top: 20px !important;
}

#imagens h2 {
  font-size: 1.25rem;
}  

#imagens p {
  font-size: 0.85rem;
}

#imagens .row.text-center {
  padding: 5rem 0 2rem 0 !important;
}

#fotos .gallery-item {
  text-align: center;
  flex: 0 0 292px;
  margin: 0;
}

#fotos button#prevBtn {
  margin-right: 20px;
}

.evolucao .progress {
  margin: 0 1rem;
  width: 80% !important;
}

}

@media (max-width: 1199px) {

  header {
    height: 5.8rem;
  }

  .navbar-nav .nav-link.active {
    border-bottom: 0.4rem solid #d22323 !important;
  }

  .navbar-brand {
    width: 220px;
  } 

  .navbar-brand img {
    max-width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.35rem 1rem 0.35rem 1rem !important;
    margin: 0 0.35rem!important;
  }
  
  #slides .carousel-inner .container {
    height: 435px;
  }

  /* slide 1 */
  .slide1 img.logo {
    top: 47%;
    width: 100px;
  }

  .slide1 h1 {
    right: 22%;
    font-size: 1.75rem;
  }

  .slide1 p {
    top: 45%;
    font-size: 1rem;
    line-height: 1.25rem;
    right: 22%;
  }

  .slide1 a.btn-foz {
      top: 61%;
      right: 22%;
  }

  /* slide 2 */
  .slide2 img.logo {
    width: 100px;
    top: 55%;
    left: 16%;
  }

  .slide2 h1 {
    right: 19%;
    font-size: 1.75rem;
  }

  .slide2 p {
    top: 20%;
    font-size: 1rem;
    line-height: 1.25rem;
    left: 18%;
  }

  .slide2 a.btn-encarnacion {
    top: 42%;
    left: 18%;
    font-size: 0.8rem;
    width: 85px;
}

/* slide 3 */

.slide3 h1 {
  right: 18%;
  font-size: 1.75rem;
}

.slide3 p {
  right: 15%;
}

.slide3 .paragrafo-esq p.txt-esq {
  left: 12.5%;
  font-size: 1.25rem;
  top: 44%;
}

.slide3 .paragrafo-esq p.inova {
  left: 15%;
  font-size: 5rem;
}

.slide3 .paragrafo-esq p.txt-esq-bottom {
  left: 15%;
  font-size: 1.25rem;
  top: 60%;
}

.slide3 a.btn-contato {
  top:65%;
  right: 15%;
  font-size: 0.8rem;
}

/* area empreendimentos */

.esquerdo .conteudo-card {
  width: 454px;
  height: 500px;
  background-size: 454px auto;
  background-position: top right;
}

.direito .conteudo-card {
  width: 454px;
  height: 500px;
  background-size: 454px auto;
  background-position: top left;
}

.card .esquerdo {
  text-align: right !important;
}

.card .direito {
  text-align: left !important;
}

.conteudo-card {
  display: flex;
  align-items: flex-start;
}

.esquerdo .texto {
  padding-top: 20px;
  padding-left: 0;
  width: 60%;
}

.direito .texto {
  padding-top: 20px;
  width: 69%;
  padding-right: 0;
}

.esquerdo .texto h5 {
  font-size: 1.6rem;
}

.direito .texto h5 {
  font-size: 1.6rem;
}

.direito .texto p.localizacao {
  font-size: 12px;
  line-height: 14px;
  padding-left: 83px;
  margin-bottom: 12px;
}

.esquerdo .texto p.localizacao {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 12px;
}

.descricao {
  font-size: 0.8rem;
  margin-top: 0!important;
}

.direito .descricao {
  margin-left: 46px !important;
}

#empreendimentos .icone {
  margin-right: 7px;
  width: 26px;
  height: 26px;
}

#empreendimentos .detalhes li {
  font-size: 0.8rem;
  margin-bottom: 5px;
}

#estagio .vermelho .descricao {
  font-size: 15px;
}

#estagio .evolucao .descricao {
  font-size: 15px;
}

#resumo .texto p.introducao {
  font-size: 1.5rem;
  line-height: 2rem;
}

#resumo .texto p {
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

#resumo .texto .box p {
  font-size: 0.9rem;
  line-height: 1.45rem;
}

#imagens h2 {
  font-size: 1.1rem;
}

#imagens p {
  font-size: 0.75rem;
}

#fotos .gallery-item {
  text-align: center;
  margin: 0 16px;
}

}

@media (max-width: 1024px) {
  
}

@media (max-width: 991px) {

  header {
    padding: 0 0 1rem 0;
  }

  .navbar-toggler-icon {
    background-image: url(../imagens/menu.png);
    border: 1px solid #FFF;
    border-radius: 0.5rem;
    width: 50px !important;
    height: 40px !important;
    background-size: 30px !important;
    margin-right: 4rem !important;
  }

  .navbar>.container {
    justify-content: end!important;
    max-width: 100%;
  }


  .navbar.scrolled>.container {
    justify-content: space-between!important;
  }

  .interna .container {
    justify-content: space-between !important;
    margin-left: 2rem;
}

  .whatsapp-float {
    text-align: right;
    padding-right: 10px;
  }
  
  div#navbarNav {
    z-index: 3000;
    background: #00274e;
    position: absolute!important;
    top: 4.5rem;
    right: 6rem;
  }

  ul.navbar-nav {
    padding: 0 15px;
  }

  li.nav-item {
    margin-bottom: 10px;
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0!important;
  }

  .slide1 {
    background-size: 135%;
  }

  .slide2 {
    background-size: 135%;
  }

  .slide3 {
    background-size: 135%;
  }

  .rodape .container {
    padding-top: 8rem;
    max-width: 100% !important;
  }


  /* área slide */
  .slide .carousel-control-prev-icon {
    background-size: 50% auto !important;
  }

  .slide .carousel-control-next-icon {
    background-size: 50% auto !important;
  }

  /* Slide 1 */
  .slide1 img.e {
    right: 30%;
  }

  .slide1 h1 {
    right: 15%;
    font-size: 1.3rem;
  }

  .slide1 p {
    right: 23%;
    font-size: 0.8rem;
    line-height: 1rem;
    width: 115px;
}

  .slide1 a.btn-foz {
    top: 59%;
    right: 23%;
    font-size: 0.7rem;
  }

  .slide1 img.logo {
    top: 50%;
    left: 15%;
    width: 80px;
  }

  /* Slide 2 */
  .slide2 img.e {
    right: 22%;
  }

  .slide2 h1 {
    right: 10%;
    font-size: 1.3rem;
  }

  .slide2 p {
    left: 10%;
    font-size: 0.8rem;
    line-height: 1rem;
  } 

  .slide2 a.btn-encarnacion {
    left: 10%;
    font-size: 0.7rem;
    top: 34%;
  } 

  .slide2 img.logo {
    top: 50%;
    left: 10%;
    width: 90px;
  }

  /* Slide 3 */
  .slide3 img.e {
    right: 23%;
  }

  .slide3 h1 {
    right: 11%;
    font-size: 1.3rem;
  }

  .slide3 p {
    right: 11%;
    font-size: 0.8rem;
    line-height: 1rem;
    width: 130px;
  }

  .slide3 a.btn-contato {
    right: 11%;
    font-size: 0.7rem;
    top:58%;
  }

  .slide3 .paragrafo-esq p.txt-esq {
    left: 5%;
    font-size: 1.1rem;
    top: 46%;
  }

  .slide3 .paragrafo-esq p.inova {
    left: 11%;
    font-size: 4.3rem;
  }

  .slide3 .paragrafo-esq p.txt-esq-bottom {
    left: 10%;
    font-size: 1.1rem;
    top: 59%;
  }

    /* Span Dentro de col-md-6 */
    #empresa span.nome {
      text-align: center!important;
    }
  
    #empresa span.titulo {
      text-align: center!important;
    }

    #empresa p {
      text-align: center;
      margin: 2rem auto 0 auto;
      width: 100%;
    }

    .empreendimento.esquerdo {
      justify-content: center;
    }

    .empreendimento.direito {
      justify-content: center;
    }

    .contato-conteudo .texto {
      max-width: 100%;
    }

    .contact-form {
      width: 100%;
    }

    .rodape {
      background: url(../imagens/fundo-rodape-direita.png) no-repeat center center;
      background-position-x: right;
      background-size: cover;
      height: 13.5rem;
      text-align: center;
    }

    .rodape p {
      font-size: 12px;
    }

    #fale-conosco {
      padding-bottom: 13rem !important;
    }
    
    #resumo {
      position: relative;
      top: 30px;
      height: 450px;
  }

    #resumo .foto {
      float: left;
      width: 30%;
      position: absolute;
      left: 0;
  }

  #resumo .texto {
    margin-top: 20px !important;
    width: 70%;
    float: right;
    position: absolute;
    right: 0;
  }

  #resumo .texto p.introducao {
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin: 30px 0 40px 60px;
  }

  #resumo .texto p {
    line-height: 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  #resumo .texto img {
    width: 100px;
  }

  #resumo .texto .box {
    margin-top: 30px;
    left: -226px;
    right: 20px;
}

  #resumo .texto .box p {
    font-size: 0.8rem;
  } 

  #imagens {
    position: relative;
  }

  #imagens p {
    position: absolute;
    top: 152px;
    width: 30%;
  }
  

  #imagens .row.text-center {
    padding: 2rem 0 !important;
  }

  #estagio-obra {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #estagio-obra li.nav-item {
    margin-bottom: 0;
  }

  #estagio-obra .tab-content {
    height: auto!important;
    padding: 1rem;
  }
  #estagio .vermelho .descricao {
    font-size: 18px!important;
  } 

  #estagio .evolucao .descricao {
    font-size: 18px!important;
  }

  .evolucao .progress {
    width: 72% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  #fotos .gallery-item {
    text-align: center;
    margin: 0 22px;
  }

  #fotos .carousel-item {
    padding: 0 2rem 0 4rem;
  } 

  #fotos .carousel-control-prev {
    margin-left: -1rem;
    top: 20%;
  }

  #fotos .carousel-control-next {
    top: 20%;
  }

  .video-wrapper video {
    display: flex;
    margin: 1rem auto;
  }

  .video-item {
    margin: 0 auto 1rem auto;
  }

  .video-item img {
    width: 46%;
  }

  #estagio-obra {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#plantas {
  margin-bottom: 20px;
}

  #localizacao-destaque .descricao {
    font-size: 0.9rem;
  }

  #localizacao-destaque .localizacao {
    padding-right: 40px;
    line-height: 1.25rem;
  }

  #simulacao .container {
    max-width: 98%;
  }

  #simulacao h2 {
    right: 16%;
  }

}


@media (max-width: 900px) {

  #resumo .texto .box {
    margin-top: 0px;
  }

  #resumo .texto p.introducao {
    margin: 5px 0 30px 60px;
  }

  #resumo .texto p {
    line-height: 1.25rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  #resumo .texto .box {
    left: -130px;
  } 

  #imagens {
    padding-top: 80px;
  }

  #imagens p {
    top: 102px;
  }

  #localizacao-destaque {
    position: relative;
  }

  #localizacao-destaque .text-center {
    position: absolute; 
    right: 10px;
  }

  .rodape .redes {
    padding-bottom: 0!important;
  }

  .social-icons a {
    width: 35px!important;
    height: 35px!important;
  }

  .social-icons a.facebook {
    background-size: 34px 34px!important;
  }

  .social-icons a.whatsapp {
    background-size: 34px 34px!important;
  }

  .social-icons a.telefone {
    background-size: 34px 34px!important;
  }

  .social-icons a.instagram {
    background-size: 34px 34px!important;
  }
  

}

@media (max-width: 768px) {

  .slide .carousel-control-next, .slide .carousel-control-prev {
    position: absolute;
    top: 27%;
  }

  .slide .carousel-control-prev-icon {
    background-size: 40% auto !important;
  }

  .slide .carousel-control-next-icon {
    background-size: 40% auto !important;
  }

  .slide1 {
    background-position-x: 0%;
    background-size: 180%;
  }

  .slide1 img.e {
    right: 40%;
  }

  .slide1 h1 {
    left: 20%;  
    text-align: left;
  }

  .slide1 img.logo {
    top: 31%;
    left: 24%;
    width: 60px;
  }

  .slide1 p {
    left: 35%;
    top: 53%;
    text-align: left;
  }

  .slide1 a.btn-foz {
    top: 67%;
    left: 35%;
    width: 85px;
  }

  .slide2 {
    background-position-x: 35%;
    background-size: 180%;
  }

  .slide2 img.e {
    left: 33%;
  }

  .slide2 h1 {
    left: 14%;
    text-align: left;
  }

  .slide2 img.logo {
    top: 10%;
    left: 79% !important;
  }

  .slide2 p {
    left: 12% !important;
    text-align: left;
    top: 35% !important;
    width: 117px !important;
  }

    .slide2 a.btn-encarnacion {
    left: 12% !important;
    font-size: 0.7rem;
    top: 53% !important;
  }

  .slide3 {
    background-position-x: 54%;
    background-size: 180%;
  }

  .slide3 img.e {
    right: 20%;
  }

  .slide3 h1 {
    right: 5%;
    text-align: left;
  }

  .slide3 p {
    right: 8%;
    top: 53%;
    text-align: right;
    width: 120px!important;
  }

  .slide3 a.btn-contato {
    right: 8% !important;
    font-size: 0.7rem;
    top: 71% !important;
    width: 205px;
  }

  .slide3 .paragrafo-esq p.txt-esq {
    left: 5%;
    top: 15%;
    width: 148px !important;
}

.slide3 .paragrafo-esq p.inova {
  left: 3%;
  font-size: 4.55rem;
  top: 20%;
}

.slide3 .paragrafo-esq p.txt-esq-bottom {
  left: 3%;
  top: 29%;
  width: 155px !important;
}

.whatsapp-float {
  text-align: right;
  padding-right: 10px;
}

#resumo .foto {
  width: 25%;
}

#resumo .texto img {
  top: -2rem;
}

#resumo .texto {
  width: 75%;
}

#resumo .texto p.introducao {
  font-size: 0.9rem;
  line-height: 1.25rem;
}

  .lista-caracteristicas {
    columns: 1;
  }

  #simulacao iframe {
    margin-bottom: 20px;
  }

  #localizacao-destaque .row {
    flex-direction: column;
    text-align: center;
  }

  #localizacao-destaque .localizacao {
    margin-top: 20px;
  }

  .btn-depoimentos {
    margin-top: 20px;
  }

  .rodape {
    background-position-x: right;
  }

  .rodape p {
    text-align: right;
  }

  .rodape .copy {
    justify-content: right;
}

  .rodape .redes {
    align-items: center;
    justify-content: center;
    background: #efefef;
    padding: 5px 0 15px 0;
  }

  #comodidades .row {
    width: 100%;
  }

  .lista-comodos li {
    font-size: 0.9rem;
  }

  .box-caracteristicas .row {
    width: 100%;
    margin: 0 auto;
  } 

  .box-caracteristicas .row div {
    width: 33%;
  } 

  .lista-caracteristicas li {
    font-size: 12px;
  } 

  #estagio-obra .container {
    max-width: 95% !important;
    margin: 0 auto;
  }

  #estagio-obra .container .evolucao {
    width: 71%!important;
    margin: 0 auto;
  }

  .evolucao .progress {
    width: 61% !important;
}

  #estagio-obra .container .vermelho {
    width: 71%!important;
    margin: 0 auto;
  }

  /* Esconde as abas */
  .nav-tabs {
    display: none!important;
  }

  /* Exibe os conteúdos das abas um abaixo do outro */
  .tab-content .tab-pane {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      transition: none;
  }

  .progress-section {
    margin-bottom: 2rem;
  } 

  /* Adiciona os títulos das abas antes dos conteúdos */
  .tab-pane::before {
    content: attr(aria-labelledby);
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FF3131 !important;
    border-bottom: 1px solid #aaa;
    padding-bottom: 5px;
    font-family: "DarkerGrotesque-Medium", sans-serif;
 }

  #localizacao-destaque p.descricao {
    width: 100%;
  }

  #localizacao-destaque p.localizacao {
    width: 100%;
  }

  #localizacao-destaque .text-center {
    position: relative;
    right: 0;
    left: 42px;
    margin: 20px 0;
  }

  #simulacao h2 {
    right: 4%;
  }

  #simulacao iframe {
    display: none!important;
  }

  #simulacao .contact-form {
    margin: 30px auto 100px auto!important;
  }

  .social-icons {
    margin-bottom: 10px;
  }

  .gallery-button img {
    width: 25px;
    height: auto;
  }

  .box img {
    width: 70%;
  }

  .video-item img {
    width: 70%;
  }

  #rooftop .container {
    max-width: 100%;
  }

  #plantas .container {
    max-width: 100%;
  }

}

@media (max-width: 680px) {
  #resumo .foto img {
    display: none;
  }   

  #resumo .texto img {
    top: -1rem;
    width: 70px;
  }

  #resumo .texto p.introducao {
    margin: 0 0 20px 25px;
    padding-right: 0;
  }

  #resumo .texto p {
    line-height: 1.15rem;
    font-size: 0.75rem;
  }

  #resumo .texto .box p {
    line-height: 1.15rem;
    font-size: 0.75rem;
  }

  #localizacao-destaque {
    padding: 40px 0 60px 0;
  }

  #simulacao h2 {
    right: 0;
    left: 0;
  }

  #resumo .texto {
    width: 88%;
}

#resumo .texto .box {
  left: -3rem;
}

#resumo .texto .box {
  padding: 20px 20px 5px 20px;
}

#imagens {
  padding-top: 0px;
}

#imagens p {
  top: 24px;
}

#fotos .gallery-item {
  margin: 0 16px;
}

}

@media (max-width: 575px) {

  .navbar-brand {
    width: 163px;
  }

  #slides .carousel-inner .container {
    height: 520px;
  }

  .slide1 {
    background-position-x: 65%;
    background-size: 354%;
  }

  .slide1 img.e {
    left: 10%;
    width: 80px;
  }

  .slide1 h1 {
    left: 16%;
    text-align: right !important;
    width: 51px;
  }

  .slide1 img.logo {
    top: 31%;
    left: 18%;
    width: 60px;
  }

  .slide1 p {
    left: 13%;
    top: 47%;
    text-align: left;
  }

  .slide1 a.btn-foz {
    top: 59%;
    left: 13%;
    width: 85px;
  }

  .slide2 {
    background-position-x: 80%;
    background-size: 354%;
  }

  .slide2 img.e {
    left: 10%;
    top: 50%;
    width: 80px;
  }

  .slide2 h1 {
    left: 16%;
    top: 50%;
  }

  .slide2 img.logo {
    left: 20% !important;
  }

  .slide2 p {
    left: 10% !important;
    top: 20% !important;
    width: 126px !important;
  }

  .slide2 a.btn-encarnacion {
    left: 10%!important;
    top: 35%!important;
  }

  .slide3 {
    background-position-x: 30%;
    background-size: 354%;
  }

  .slide3 img.e {
    top: 42% !important;
    left: 14% !important;
    width: 80px !important;
  }

  .slide3 h1 {
    top: 44% !important;
    left: 6% !important;
  }

  .slide3 p {
    left: 2% !important;
    top: 16% !important;
    width: 193px !important;
    text-align: left;
  }

  .slide3 a.btn-contato {
    left: 2% !important;
    top: 28% !important;
  } 

  .slide3 .paragrafo-esq p.txt-esq {
    left: 2% !important;
    top: 66% !important;
    font-size: 1rem;
  }

.slide3 .paragrafo-esq p.inova {
  left: 2%;
  top: 70% !important;
  font-size: 4rem;
}

.slide3 .paragrafo-esq p.txt-esq-bottom {
  left: 2%;
  top: 77% !important;
  font-size: 1rem;
}

#empresa {
  padding: 1rem 0;
}

#empresa span.nome {
  font-size: 2rem;
}  

#empresa span.titulo {
  line-height: 1.25rem;
  font-size: 1.75rem;
}

#diferenciais {
  background: none;
  padding: 1rem 0 2rem 0;
}

#empreendimentos {
  padding-top: 2rem;

}

.esquerdo .conteudo-card {
  width: 360px;
  height: 400px;
  background-size: 360px auto;
}

.esquerdo .texto h5 {
  font-size: 1.25rem !important;
  margin-top: 2px !important;
  margin-bottom: 0 !important;
}

.esquerdo .texto p.localizacao {
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 9px;
}

.descricao {
  font-size: 0.7rem;
}

#empreendimentos .detalhes li {
  font-size: 0.675rem;
}

.descricao {
  margin-bottom: 8px !important;
}

#empreendimentos .icone {
  width: 22px;
  height: 22px;
}

.esquerdo .texto ul.detalhes {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 30px !important;
}

.saiba-mais {
  padding: 10px 0 0 30px!important;
  font-size: 12px!important;
}

.direito .conteudo-card {
  width: 360px;
  height: 400px;
  background-size: 360px auto;
}

.tag.pronto {
  margin-right: 34px;
}

.direito .texto h5 {
  font-size: 1.25rem !important;
  margin-top: 2px !important;
  margin-bottom: 0 !important;
  margin-right: 34px!important;
}

.direito .texto p.localizacao {
  font-size: 10px;
  line-height: 12px;
  margin-bottom: 9px;
  padding-left: 67px;
}

#fotos .carousel-control-prev-icon {
  width: 30px;
  height: 60px;
}

#fotos .carousel-control-next-icon {
  width: 30px;
  height: 60px;
}

#fotos .carousel-item img {
  max-width: 100%!important;
}

#fotos .carousel-control-prev {
  top: 38%!important;
  margin-left: 0rem!important;
}

#fotos .carousel-control-next {
  top: 38%!important;
  margin-right: 0rem!important;
}


#fotos .carousel-control-next, .slide .carousel-control-prev {
  position: absolute;
  top: 28%;
}

#empreendimentos .detalhes li {
  font-size: 0.675rem;
}

.direito .descricao {
  margin-left: 40px !important;
}

.direito .texto ul.detalhes {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 70px !important;
}

.direito .saiba-mais {
  float: left;
  padding-left: 4.5rem !important;
}

#fale-conosco {
  padding: 2rem 0 9rem 0;
}

#simulacao {
  padding: 2rem 0 9rem 0;
}

.rodape .copy {
  width: 70%;
  padding-top: 1rem;
}

.rodape p {
  width: 100%;
  line-height: 12px;
}

.rodape .logo {
  width: 30%;
}

.rodape .logo img {
  max-width: 100px;
}

.rodape {
  background-position-x: -641px;
}

#resumo {
  height: 480px;
}

.lista-comodos li img {
  margin-right: 10px;
  padding: 4px;
  width: 40px;
  height: 40px;
}

.lista-comodos li {
  font-size: 0.8rem;
}

#imagens h2 {
  display: none;
}

#imagens p {
  display: none;
}

#localizacao-destaque .text-center {
  width: 200px!important;
}

#estagio-obra .container .vermelho {
  width: 80% !important;
}

#estagio-obra .container .evolucao {
  width: 80% !important;
}

.progress-section .porcentagem {
  margin-left: 2rem !important;
}

#estagio-obra .container {
  max-width: 100%;
  margin: auto;
}

#estagio-obra .tab-content {
  height: auto !important;
  padding: 0 10px;
}

#fotos button#nextBtn {
  margin-left: 0;
}

#fotos button#prevBtn {
  margin-right: 0;
}

#localizacao-destaque p.descricao {
  width: 90%;
}

#resumo {
  height: 520px;
}

#resumo .texto .box {
  left: -1.65rem;
}

#imagens {
  padding-top: 65px;
}

.gallery-item {
  flex: 0 0 150px;
}

.gallery-item img {
  width: 100%;
}

}