* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --white: #ffffff;
  --gray-100: #fbf7f7;
  --gray-300: #a1ab99;
  --gray-500: #625f5f;
  --beige-500: #c2ab7f;
  --green-300: #719d4f;
  --green-500: #005f5e;
  --red-500: #b93a42;
  --yellow: #b4952a;
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 1024px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 87.5%;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  background: var(--gray-100);
}
body,
input,
textarea,
select,
button {
  line-height: 1.2;
  font: 400 1rem Inter, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  line-height: 1.4;
  font: 700 1rem Inter, sans-serif;
}
button {
  cursor: pointer;
}
button:disabled {
  filter: brightness(0.7);
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
#header {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--green-500);
}
@media (min-width: 768px) {
  #header {
    height: 10vh;
    grid-template-columns: repeat(3, 1fr);
  }
}
#header .logos-container {
  display: flex;
}
#header .logos-container .logos {
  flex: 1;
  background: var(--white);
  display: flex;
  justify-content: center;
  height: 10vh;
  align-items: center;
  gap: 2rem;
  padding-inline: 1rem;
}
#header .logos-container .logos img {
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #header .logos-container .logos img {
    max-width: 300px;
    width: 100%;
  }
}
#header .logos-container > img {
  display: none;
}
#header strong {
  height: 10vh;
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: center;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.125rem;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #header strong {
    font-size: 3rem;
  }
}
#header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  #header nav {
    padding-bottom: 0;
    padding-right: 3rem;
    justify-content: right;
  }
}
#header nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 1rem;
  width: 100px;
  height: 2rem;
  background: var(--white);
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  #header nav a {
    margin: 0;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #header nav a {
    width: 275px;
    height: 4.5rem;
    font-size: 2.5rem;
  }
}

#header nav select {
  border-radius: 0 1rem;
  height: 2rem;
  outline: none;
  padding-inline: 0.5rem;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--green-500);
}

#header nav select option {
  color: #222222;
  max-width: 300px;
}

#home .info {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  width: 100%;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #home .info {
    font-size: 3rem;
  }
}
#home .info span {
  text-align: center;
  display: block;
  text-align: center;
  color: var(--gray-500);
}
#home .info strong {
  font-size: inherit;
}

#home .empreendimentos {
  max-height: 70vh;
  overflow-y: auto;
  justify-content: space-evenly;
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
}
#home .empreendimentos::-webkit-scrollbar {
  width: 0.25rem;
}
@media (min-width: 768px) {
  #home .empreendimentos::-webkit-scrollbar {
    width: 1rem;
  }
}
#home .empreendimentos::-webkit-scrollbar-track {
  background: #e1dbdb;
  background-clip: content-box;
}
#home .empreendimentos::-webkit-scrollbar-thumb {
  background-color: var(--green-500);
  opacity: 0.5;
  height: 20px;
}
@media (min-width: 600px) {
  #home .empreendimentos {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  #home .empreendimentos {
    max-height: calc(100vh - 10rem);
  }
}
@media (min-width: 1024px) {
  #home .empreendimentos {
    max-height: 80vh;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 2160px) and (min-height: 1440px) {
  #home .empreendimentos {
    gap: 3rem;
  }
}
#home .empreendimentos .empreendimento {
  position: relative;
  overflow: hidden;
}
#home .empreendimentos .empreendimento .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(194, 171, 127, 0.6);
  opacity: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .empreendimentos .empreendimento .overlay span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #home .empreendimentos .empreendimento .overlay span {
    font-size: 3rem;
  }
}
#home .empreendimentos .empreendimento:hover .overlay {
  opacity: 1;
}
#home .empreendimentos .empreendimento {
  width: 100%;
  height: 20rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1366px) {
  #home .empreendimentos .empreendimento {
    height: 35vh;
  }
}
#home .empreendimentos .empreendimento .logo {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 50%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media (min-width: 1366px) {
  #home .empreendimentos .empreendimento .logo {
    width: 8rem;
    height: 8rem;
  }
}
@media (min-width: 2166px) {
  #home .empreendimentos .empreendimento .logo {
    width: 20rem;
    height: 20rem;
  }
}
#home .empreendimentos .empreendimento .logo img {
  grid-row: 2;
  max-width: 90px;
  width: 100%;
  height: 100%;
  max-height: 40px;
  object-fit: contain;
  margin-inline: auto;
}

@media (min-width: 1366px) {
  #home .empreendimentos .empreendimento .logo img {
    grid-row: 2;
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    margin-inline: auto;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #home .empreendimentos .empreendimento .logo img {
    max-width: 170px;
    max-height: 120px;
  }
}
#home .empreendimentos .empreendimento .banner {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
#home .empreendimentos .empreendimento .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home .empreendimentos .empreendimento .localizacao {
  position: relative;
  background: var(--green-500);
  color: var(--white);
  font-weight: 700;
  padding-block: 0.75rem;
  text-align: center;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #home .empreendimentos .empreendimento .localizacao {
    font-size: 3rem;
  }
}
#interno #header-interno {
  height: 20vh;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 550px) {
  #interno #header-interno {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 768px) {
  #interno #header-interno {
    padding-inline: 2rem 1rem;
  }
}
#interno #header-interno .empreendimento-info {
  display: flex;
  gap: 1rem;
}
#interno #header-interno .empreendimento-info .logo {
  width: 120px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: var(--white);
}
@media (min-width: 768px) {
  #interno #header-interno .empreendimento-info .logo {
    width: 150px;
    height: 90px;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .empreendimento-info .logo {
    width: 380px;
    height: 230px;
  }
}
#interno #header-interno .empreendimento-info .logo img {
  object-fit: contain;
  max-width: 55px;
  width: 100%;
  max-height: 52px;
  height: 100%;
}
@media (min-width: 768px) {
  #interno #header-interno .empreendimento-info .logo img {
    max-width: 75px;
    max-height: 72px;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .empreendimento-info .logo img {
    max-width: 165px;
    max-height: 162px;
  }
}
#interno #header-interno .empreendimento-info .data strong {
  color: var(--green-500);
  font-size: 1rem;
}
@media (min-width: 768px) {
  #interno #header-interno .empreendimento-info .data strong {
    font-size: 1.2rem;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .empreendimento-info .data strong {
    font-size: 3rem;
  }
}

#interno #header-interno .empreendimento-info .data span {
  display: block;
  color: var(--gray-500);
}
@media (min-width: 768px) {
  #interno #header-interno .empreendimento-info .data span {
    font-size: 1.125rem;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .empreendimento-info .data span {
    font-size: 2.5rem;
  }
}
#interno #header-interno .controls {
  width: fit-content;
  background: var(--beige-500);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 1.5rem;
  border-radius: 2rem;
  align-self: center;
}

@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .controls {
    gap: 2rem;
  }
}
#interno #header-interno .controls button {
  background: var(--white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
}

#interno #header-interno .controls button.control img {
  max-width: 14px;
  display: none;
}
#interno #header-interno .controls button.control img.active {
  display: block;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .controls {
    padding: 1rem 4rem;
    border-radius: 4rem;
  }

  #interno #header-interno .controls button.control img {
    max-width: 42px;
    display: none;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .controls button {
    width: 80px;
    padding: 1rem;
    height: 80px;
  }
}
#interno #header-interno .controls button img {
  max-width: 8px;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #header-interno .controls button img {
    max-width: 24px;
    width: 100%;
  }
}
#interno #dynamic-zone {
  display: grid;
  padding-inline: 1rem;
  gap: 2rem;
}
@media (min-width: 1366px) {
  #interno #dynamic-zone {
    grid-template-columns: 2fr 1fr;
  }
}
#interno #dynamic-zone .planta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 17rem;
}
#interno #dynamic-zone .planta img {
  width: 100%;
  object-fit: contain;
  height: 17rem;
}

@media (min-width: 550px) {
  #interno #dynamic-zone .planta {
    height: calc(100vh - 60vh);
  }
  #interno #dynamic-zone .planta img {
    height: calc(100vh - 60vh);
  }
}

@media (min-width: 768px) {
  #interno #dynamic-zone .planta {
    height: calc(100vh - 40vh);
  }
  #interno #dynamic-zone .planta img {
    height: calc(100vh - 40vh);
  }
}
#interno #dynamic-zone .data {
  max-height: calc(100vh - 40vh);
  height: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #interno #dynamic-zone .data {
    min-width: 380px;
    margin-bottom: 0;
  }
}
#interno #dynamic-zone .data .swiper-labels {
  width: 280px;
}
@media (min-width: 425px) {
  #interno #dynamic-zone .data .swiper-labels {
    width: 320px;
  }
}
@media (min-width: 550px) {
  #interno #dynamic-zone .data .swiper-labels {
    width: 425px;
  }
}
@media (min-width: 768px) {
  #interno #dynamic-zone .data .swiper-labels {
    width: 100%;
  }
}

#interno
  #dynamic-zone
  .data
  .swiper-labels
  .swiper-slide.swiper-slide-active
  span {
  background: var(--green-500);
}
#interno #dynamic-zone .data .swiper-labels span {
  display: flex;
  align-items: center;
  user-select: none;
  justify-content: center;
  width: 100%;
  height: 3rem;
  background: var(--beige-500);
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #dynamic-zone .data .swiper-labels span {
    height: 7rem;
    font-size: 2.5rem;
  }
}
#interno #dynamic-zone .data .progress-bar {
  height: 3px;
  width: 0%;
  background: var(--beige-500);
  border-radius: 2px;
  margin-top: 0.25rem;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #dynamic-zone .data .progress-bar {
    height: 10px;
    margin-top: 0.5rem;
  }
}
#interno #dynamic-zone .data .grid-status-info {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-y: auto;
  padding-right: 0.5rem;
}

#interno #dynamic-zone .data .grid-status-info.active {
  display: grid;
}
#interno #dynamic-zone .data .grid-status-info::-webkit-scrollbar {
  width: 0.25rem;
}
@media (min-width: 768px) {
  #interno #dynamic-zone .data .grid-status-info::-webkit-scrollbar {
    width: 1rem;
  }
}
#interno #dynamic-zone .data .grid-status-info::-webkit-scrollbar-track {
  background: #e1dbdb;
  background-clip: content-box;
}
#interno #dynamic-zone .data .grid-status-info::-webkit-scrollbar-thumb {
  background-color: var(--green-500);
  opacity: 0.5;
  height: 20px;
}
#interno #dynamic-zone .data .grid-status-info .status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  padding-block: 0.25rem;
  font-size: 1.125rem;
}
#interno #dynamic-zone .data .grid-status-info .status span,
#interno #dynamic-zone .data .grid-status-info .status strong {
  font-size: 0.875rem;
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #dynamic-zone .data .grid-status-info .status {
    font-size: 2rem;
    height: 7rem;
  }
  #interno #dynamic-zone .data .grid-status-info .status span,
  #interno #dynamic-zone .data .grid-status-info .status strong {
    font-size: inherit;
  }
}
#interno #dynamic-zone .data .grid-status-info .status.fora-de-venda {
  background: var(--gray-300);
}
#interno #dynamic-zone .data .grid-status-info .status.vendido {
  background: var(--red-500);
}
#interno #dynamic-zone .data .grid-status-info .status.disponivel {
  background: var(--green-300);
}
#interno #dynamic-zone .data .grid-status-info .status.reservado {
  background: var(--yellow);
}
#interno #footer {
  display: flex;
  justify-content: center;
  padding-inline: 1rem;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  #interno #footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  #interno #footer {
    height: 10vh;
  }
}
@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #footer {
    font-size: 3rem;
  }
}
#interno #footer .dev {
  order: 1;
}
@media (min-width: 1024px) {
  #interno #footer .dev {
    order: 0;
  }
}
#interno #footer .dev span a {
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 1024px) {
  #interno #footer .container {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
#interno #footer .container strong {
  font-size: inherit;
}
#interno #footer .legenda {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 550px) {
  #interno #footer .legenda {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #interno #footer .legenda {
    margin: 0;
  }
}
#interno #footer .legenda strong {
  text-transform: uppercase;
}
#interno #footer .legenda div {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#interno #footer .legenda div span {
  text-transform: uppercase;
}
#interno #footer .legenda div span:first-child {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

@media (min-width: 2160px) and (min-height: 1440px) {
  #interno #footer .legenda div span:first-child {
    width: 3rem;
    height: 3rem;
  }
}
#interno #footer .legenda div span:first-child.gray {
  background: var(--gray-300);
}
#interno #footer .legenda div span:first-child.red {
  background: var(--red-500);
}
#interno #footer .legenda div span:first-child.green {
  background: var(--green-300);
}
#interno #footer .legenda div span:first-child.yellow {
  background: var(--yellow);
} /*# sourceMappingURL=index.css.map */
