@charset "UTF-8";
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 0.3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

/*=============== THEME ===============*/
.change-theme {
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color: hsl(228, 66%, 62%);
  --second-color: hsl(25, 57%, 54%);
  --title-color: hsl(228, 8%, 95%);
  --text-color: hsl(228, 8%, 70%);
  --border-color: hsl(228, 16%, 14%);
  --body-color: hsl(228, 12%, 8%);
  --container-color: hsl(228, 16%, 12%);
}

/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/
.dark-theme .home__search, .dark-theme .swiper-button-next, .dark-theme .swiper-button-prev {
  border: 3px solid var(--border-color);
}

.dark-theme .nav__menu, .dark-theme .home__img, .dark-theme .popular__card:hover, .dark-theme .value__img, .dark-theme .accordion-open, .dark-theme .accordion-open .value__accordion-icon, .dark-theme .accordion-open .value__accordion-arrow, .dark-theme .contact__img, .dark-theme .contact__card-box:hover, .dark-theme .scrollup {
  box-shadow: none;
}

.dark-theme .value__orbe, .dark-theme .value__accordion-icon, .dark-theme .value__accordion-arrow, .dark-theme .contact__orbe, .dark-theme .contact__card i, .dark-theme .contact__card-button, .dark-theme .subscribe__container {
  background-color: var(--container-color);
}

.dark-theme .subscribe__container {
  border: 6px solid var(--border-color);
}
.dark-theme .subscribe__description {
  color: var(--text-color);
}

/*========== Property page dark theme ==========*/
.dark-theme {
  /* Features boxes */
  /* Tags */
  /* Details grid */
  /* Gallery */
  /* CTA section */
  /* Breadcrumb */
  /* Listing cards */
}
.dark-theme .property__feature {
  background-color: var(--container-color);
  border-color: var(--border-color);
}
.dark-theme .property__feature-value {
  color: var(--title-color);
}
.dark-theme .property__feature-label {
  color: var(--text-color);
}
.dark-theme .property__feature i {
  color: var(--first-color);
}
.dark-theme .property__tag {
  background-color: var(--container-color);
  color: var(--text-color);
}
.dark-theme .property__tag--type {
  background-color: var(--first-color);
  color: #fff;
}
.dark-theme .property__detail-item {
  background-color: var(--container-color);
  border-color: var(--border-color);
}
.dark-theme .property__detail-label {
  color: var(--text-color);
}
.dark-theme .property__detail-value {
  color: var(--title-color);
}
.dark-theme .property__gallery-main {
  background-color: var(--container-color);
}
.dark-theme .property__gallery-prev, .dark-theme .property__gallery-next {
  background-color: var(--container-color);
  color: var(--title-color);
}
.dark-theme .property__gallery-thumb {
  border-color: var(--border-color);
}
.dark-theme .property__cta {
  background-color: var(--container-color);
  border-color: var(--border-color);
}
.dark-theme .breadcrumb__link {
  color: var(--first-color);
}
.dark-theme .breadcrumb__current {
  color: var(--text-color);
}
.dark-theme .listing__card {
  background-color: var(--container-color);
  border-color: var(--border-color);
}
.dark-theme .listing__card-features span {
  background-color: var(--body-color);
  color: var(--text-color);
}
.dark-theme .listing__sort-select {
  background-color: var(--container-color);
  border-color: var(--border-color);
  color: var(--text-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(228, 4%, 15%);
}
.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(228, 4%, 25%);
}
.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 4%, 35%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}
.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}
.section__title span {
  color: var(--second-color);
}
.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

/* Clean divider between sections */
.section-divider {
  width: 100%;
  max-width: 1024px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, hsla(228, 15%, 50%, 0.18), transparent);
}

.main {
  overflow: hidden; /* For the animations */
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: 0.4s; /* for light mode animation */
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  color: #fff;
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.nav__logo i {
  font-size: 1rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.15);
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.3rem 3rem;
    border-radius: 1.25rem;
    transition: 0.4s;
  }
  .nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__link {
    color: var(--text-color);
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
  }
  .nav__link i {
    font-size: 1.25rem;
  }
  .nav__link span {
    display: none;
  }
}

/* Change background header */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 1px 4px hsla(228, 4%, 15%, 0.1);
}
.scroll-header .nav__logo {
  color: var(--first-color);
}
.scroll-header .change-theme {
  color: var(--title-color);
}
.scroll-header .nav__link {
  color: var(--title-color);
}
.scroll-header .nav__link i {
  color: var(--title-color);
}

/* Active link */
.active-link {
  background: linear-gradient(101deg, hsl(228, 66%, 53%), hsl(228, 66%, 47%));
  color: #fff !important;
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, 0.25);
}
.active-link i {
  color: #fff !important;
}

/*=============== HOME ===============*/
.home {
  background: linear-gradient(170deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%), url("../img/fundo.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 0;
}
.home__container {
  padding-top: 4rem;
  row-gap: 3.5rem;
}
.home__title, .home__value-number {
  color: #fff;
}
.home__title {
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}
.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
}
.home__search {
  background-color: var(--body-color);
  padding: 0.35rem 0.35rem 0.35rem 0.75rem;
  display: flex;
  align-items: center;
  border-radius: 0.75rem;
  border: 3px solid var(--text-color-light);
  margin-bottom: 2rem;
}
.home__search i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.home__search-input {
  width: 90%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 0.5rem;
}
.home__search-input::placeholder {
  color: var(--text-color-light);
}
.home__value {
  display: flex;
  column-gap: 2.5rem;
}
.home__value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}
.home__value-number span {
  color: var(--second-color);
}
.home__value-description {
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}
.home__images {
  position: relative;
  display: flex;
  justify-content: center;
}
.home__orbe {
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, hsl(0, 0%, 67%) 100%);
  border-radius: 135px 135px 0 0;
}
.home__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  display: inline-flex;
  align-items: flex-end;
  bottom: -1.5rem;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}
.home__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/*=============== BUTTON ===============*/
.button {
  display: inline-block;
  background: linear-gradient(101deg, hsl(228, 66%, 53%), hsl(228, 66%, 47%));
  color: #fff;
  padding: 14px 28px;
  border-radius: 0.5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, 0.25);
  transition: 0.3s;
  cursor: pointer;
}
.button:hover {
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, 0.25);
}

.nav__button {
  display: none;
}

/*=============== LOGOS ===============*/
.logos__container {
  padding-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
}
.logos__img img {
  height: 60px;
  opacity: 0.2;
  transition: 0.3s;
}
.logos__img img:hover {
  opacity: 0.6;
}

/*=============== POPULAR ===============*/
.popular {
  /* Grid layout for property listing page */
}
.popular__container {
  padding: 1rem 0 5rem;
}
.popular__card {
  width: 100%;
  max-width: 320px;
  background-color: var(--container-color);
  padding: 0.75rem 0.75rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.popular__card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, 0.1);
}
@media screen and (min-width: 576px) {
  .popular__card {
    padding: 1rem 1rem 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular__card {
    padding: 1rem 1rem 2rem;
  }
}
.popular__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.popular__img-wrapper {
  position: relative;
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.popular__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popular__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.popular__data {
  position: relative;
  z-index: 2;
  padding: 0 0.5rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
@media screen and (min-width: 576px) {
  .popular__data {
    padding: 0 0.75rem 0 0.5rem;
    row-gap: 0.85rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular__data {
    row-gap: 1rem;
  }
}
.popular__header {
  display: flex;
  flex-direction: column;
  row-gap: 0.35rem;
}
.popular__price-group {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.5rem;
}
.popular__price {
  font-size: var(--h2-font-size);
  color: var(--text-color);
  line-height: 1.1;
}
.popular__price span {
  color: var(--second-color);
}
.popular__price-note {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}
.popular__location {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}
.popular__location i {
  color: var(--second-color);
  font-size: 1rem;
}
.popular__title {
  font-size: var(--h3-font-size);
  line-height: 1.3;
}
.popular__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
}
.popular__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.popular__features span {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: var(--smaller-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}
.popular__features i {
  font-size: 1rem;
  color: var(--first-color);
}
.popular__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (min-width: 576px) {
  .popular__cta {
    row-gap: 0.65rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular__cta {
    row-gap: 0.75rem;
  }
}
.popular__cta-button {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: var(--small-font-size);
}
@media screen and (min-width: 576px) {
  .popular__cta-button {
    padding: 0.85rem 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular__cta-button {
    font-size: var(--normal-font-size);
    padding: 1rem 1.5rem;
  }
}
.popular__cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.35rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--first-color);
  padding: 0.5rem;
  transition: 0.3s;
}
.popular__cta-whatsapp i {
  font-size: 1rem;
  color: #25D366;
}
.popular__cta-whatsapp:hover {
  color: #25D366;
}
@media screen and (min-width: 576px) {
  .popular__cta-whatsapp {
    column-gap: 0.4rem;
    padding: 0.6rem;
  }
}
.popular__badge, .popular__tag {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: #fff;
  background-color: var(--first-color);
  box-shadow: 0 4px 8px hsla(228, 66%, 35%, 0.3);
}
.popular__badge {
  left: 0.75rem;
  background-color: var(--second-color);
}
.popular__tag {
  right: 0.75rem;
}
.popular__container--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
}
@media screen and (min-width: 350px) {
  .popular__container--grid {
    gap: 1.75rem;
  }
}
@media screen and (min-width: 576px) {
  .popular__container--grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .popular__container--grid {
    gap: 2.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular__container--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .popular__container--grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .popular__container--grid {
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }
}
.popular__container--grid .popular__card {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .popular__container--grid .popular__card {
    max-width: 400px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .popular__img-wrapper:hover .popular__img--hover {
    opacity: 1;
  }
  .popular__img-wrapper:hover .popular__img--main {
    opacity: 0;
  }
}
/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-next,
.swiper-button-prev {
  top: initial;
  bottom: 0;
  width: initial;
  height: initial;
  background-color: var(--container-color);
  border: 2px solid var(--text-color-light);
  padding: 6px;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
}

.swiper-button-prev {
  left: calc(50% - 3rem);
}

.swiper-button-next {
  right: calc(50% - 3rem);
}

.popular__more {
  text-align: center;
  margin-top: 3rem;
}
.popular__more-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.popular__more-button i {
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.popular__more-button:hover i {
  transform: translateX(4px);
}

/*=============== VALUE ===============*/
.value__container {
  row-gap: 3rem;
}
.value__images {
  position: relative;
  display: flex;
  justify-content: center;
}
.value__orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(288, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}
.value__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  position: absolute;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}
.value__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.value__description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}
.value__accordion {
  display: grid;
  row-gap: 1.5rem;
}
.value__accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
}
.value__accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.value__accordion-icon {
  background-color: var(--first-color-lighten);
  padding: 5px;
  border-radius: 0.25rem;
  font-size: 18px;
  color: var(--first-color);
  margin-right: 0.75rem;
  transition: 0.3s;
}
.value__accordion-title {
  font-size: var(--small-font-size);
}
.value__accordion-arrow {
  display: inline-flex;
  background-color: var(--first-color-lighten);
  padding: 0.25rem;
  color: var(--first-color);
  border-radius: 2px;
  font-size: 10px;
  margin-left: auto;
  transition: 0.3s;
}
.value__accordion-arrow i {
  transition: 0.4s;
}
.value__accordion-description {
  font-size: var(--smaller-font-size);
  padding: 1.25rem 2.5rem 0 2.75rem;
}
.value__accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

/*Rotate icon and add shadows*/
.accordion-open {
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, 0.1);
}
.accordion-open .value__accordion-icon {
  box-shadow: 0 4px 4px hsla(228, 66%, 45%, 0.1);
}
.accordion-open .value__accordion-arrow {
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, 0.1);
}
.accordion-open .value__accordion-arrow i {
  transform: rotate(-180deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 2rem;
}
.contact__images {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact__orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 16px 16px;
}
.contact__img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 12px 12px;
  position: absolute;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, 0.25);
}
.contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.contact__description {
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}
.contact__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact__card-box {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 0.75rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contact__card-box:hover {
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.1);
  border-color: var(--first-color-light);
}
.contact__card-info {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.contact__card i {
  padding: 10px;
  background-color: var(--first-color-lighten);
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  flex-shrink: 0;
}
.contact__card-title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.15rem;
}
.contact__card-description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact__card-button {
  font-size: var(--small-font-size);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--first-color);
  color: #fff;
  font-weight: var(--font-medium);
  box-shadow: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact__card-button:hover {
  background-color: var(--first-color-alt);
}

/* Contact responsive improvements */
@media screen and (min-width: 576px) {
  .contact__card {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact__card-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .contact__card-info {
    margin-bottom: 0.75rem;
  }
  .contact__card-button {
    width: 100%;
    text-align: center;
  }
  .contact__card-description {
    white-space: normal;
    word-break: break-word;
  }
}
/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 2.5rem;
}
.footer__logo {
  color: var(--first-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.footer__logo i {
  font-size: 1.25rem;
}
.footer__description, .footer__link {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}
.footer__content, .footer__links {
  display: grid;
}
.footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}
.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}
.footer__links {
  row-gap: 0.5rem;
}
.footer__link {
  color: var(--text-color);
  transition: 0.3s;
}
.footer__link:hover {
  color: var(--title-color);
}
.footer__social {
  display: flex;
  column-gap: 1rem;
}
.footer__social-link {
  font-size: 1.25rem;
  color: var(--text-color);
  transition: 0.3s;
}
.footer__social-link:hover {
  color: var(--title-color);
}
.footer__info, .footer__privacy {
  display: flex;
}
.footer__info {
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}
.footer__copy, .footer__privacy a {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}
.footer__privacy {
  justify-content: center;
  column-gap: 1.25rem;
}
.footer__developer {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin-top: 0.5rem;
}
.footer__developer a {
  color: var(--first-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.footer__developer a:hover {
  color: var(--title-color);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 0.5rem;
  background-color: hsl(228, 8%, 76%);
}
::-webkit-scrollbar-thumb {
  background-color: hsl(228, 8%, 64%);
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 54%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  background-color: var(--container-color);
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, 0.1);
  display: inline-flex;
  padding: 0.35rem;
  border-radius: 0.25rem;
  color: var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: 0.3s;
}
.scrollup:hover {
  transform: translateY(-0.25rem);
  color: var(--first-color);
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 8rem;
}

/*=============== PROPERTY DETAIL ===============*/
.property {
  padding-top: 6rem;
  /*========== GALLERY ==========*/
  /*========== CONTENT ==========*/
  /*========== FEATURES ==========*/
  /*========== DESCRIPTION ==========*/
  /*========== DETAILS ==========*/
  /*========== MAP ==========*/
  /*========== CTA ==========*/
}
.property__container {
  display: grid;
  gap: 2rem;
}
.property__gallery-main {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--container-color);
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.1);
}
.property__gallery-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.property__gallery-prev, .property__gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.property__gallery-prev:hover, .property__gallery-next:hover {
  background-color: var(--first-color);
  color: #fff;
}
.property__gallery-prev {
  left: 1rem;
}
.property__gallery-next {
  right: 1rem;
}
.property__gallery-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: var(--small-font-size);
}
.property__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.property__gallery-thumb {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border: 2px solid transparent;
}
.property__gallery-thumb:hover {
  opacity: 0.9;
}
.property__gallery-thumb.active {
  opacity: 1;
  border-color: var(--first-color);
}
.property__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.property__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.property__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.property__tag {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}
.property__tag--type {
  background-color: var(--first-color);
  color: #fff;
}
.property__tag--ref {
  background-color: var(--first-color-lighten);
  color: var(--first-color);
}
.property__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  line-height: 1.3;
}
.property__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: var(--normal-font-size);
}
.property__location i {
  color: var(--second-color);
  font-size: 1.25rem;
}
.property__price {
  font-size: 1.75rem;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
.property__price span {
  font-size: 2rem;
}
.property__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.property__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--first-color-lighten);
  border-radius: 0.75rem;
  transition: 0.3s;
}
.property__feature i {
  font-size: 1.5rem;
  color: var(--first-color);
}
.property__feature-info {
  display: flex;
  flex-direction: column;
}
.property__feature-value {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.property__feature-label {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}
.property__description p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.property__description p:last-child {
  margin-bottom: 0;
}
.property__subtitle {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}
.property__details-grid {
  display: grid;
  gap: 0.75rem;
}
.property__detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}
.property__detail-item:last-child {
  border-bottom: none;
}
.property__detail-label {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}
.property__detail-value {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-align: right;
}
.property__map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px hsla(228, 66%, 45%, 0.1);
}
.property__map-container iframe {
  display: block;
}
.property__map-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
}
.property__map-note i {
  color: var(--first-color);
}
.property__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--first-color-lighten);
  border-radius: 1rem;
}
.property__cta-whatsapp {
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.property__cta-whatsapp i {
  font-size: 1.25rem;
}
.property__cta-whatsapp:hover {
  background-color: #20bd5a;
}
.property__cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.property__cta-phone i {
  font-size: 1.25rem;
}

/*=============== BREADCRUMB ===============*/
.breadcrumb {
  padding-top: 5rem;
  padding-bottom: 0;
}
.breadcrumb__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb__link {
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: 0.3s;
}
.breadcrumb__link:hover {
  color: var(--first-color);
}
.breadcrumb__current {
  color: var(--first-color);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}
.breadcrumb i {
  color: var(--text-color-light);
  font-size: 0.75rem;
}

/*=============== RELATED PROPERTIES ===============*/
.related__grid {
  display: grid;
  gap: 1.5rem;
}
.related__more {
  text-align: center;
  margin-top: 2rem;
}

/*=============== LISTING PAGE ===============*/
.listing-header {
  padding-bottom: 0;
}
.listing-header__description {
  color: var(--text-color);
  max-width: 600px;
}

.listing {
  padding-top: 2rem;
  /*========== LISTING CARD ==========*/
}
.listing__filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.listing__results {
  color: var(--text-color);
  font-size: var(--normal-font-size);
}
.listing__results strong {
  color: var(--first-color);
}
.listing__sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.listing__sort label {
  font-size: var(--small-font-size);
  color: var(--text-color);
}
.listing__sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--container-color);
  color: var(--title-color);
  font-size: var(--small-font-size);
  cursor: pointer;
  transition: 0.3s;
}
.listing__sort-select:focus {
  border-color: var(--first-color);
  outline: none;
}
.listing__grid {
  display: grid;
  gap: 1.5rem;
}
.listing__card {
  background-color: var(--container-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.1);
  transition: 0.3s;
}
.listing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, 0.15);
}
.listing__card-link {
  display: block;
}
.listing__card-img-container {
  position: relative;
  overflow: hidden;
}
.listing__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.3s;
}
.listing__card:hover .listing__card-img {
  transform: scale(1.05);
}
.listing__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--second-color);
  color: #fff;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  border-radius: 0.25rem;
}
.listing__card-badge--featured {
  background-color: var(--first-color);
}
.listing__card-badge--premium {
  background-color: hsl(45, 100%, 51%);
  color: var(--title-color);
}
.listing__card-content {
  padding: 1.25rem;
}
.listing__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.listing__card-type {
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.listing__card-ref {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}
.listing__card-title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}
.listing__card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: 1rem;
}
.listing__card-location i {
  color: var(--second-color);
}
.listing__card-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.listing__card-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}
.listing__card-features span i {
  color: var(--first-color);
}
.listing__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.listing__card-price {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}
.listing__card-price span {
  font-size: var(--h2-font-size);
}
.listing__card-action {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
}
.listing__card-action i {
  transition: 0.3s;
}
.listing__card:hover .listing__card-action i {
  transform: translateX(4px);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px) {
  .property__features {
    grid-template-columns: 1fr;
  }
  .property__gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .property__gallery-thumb:nth-child(4), .property__gallery-thumb:nth-child(5) {
    display: none;
  }
}
/* For medium devices */
@media screen and (min-width: 576px) {
  .property__features {
    grid-template-columns: repeat(4, 1fr);
  }
  .property__cta {
    flex-direction: row;
  }
  .property__gallery-main img {
    height: 400px;
  }
  .property__gallery-thumb {
    height: 80px;
  }
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .listing__filters {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* For large devices */
@media screen and (min-width: 1023px) {
  .property {
    padding-top: 8rem;
  }
  .property__container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .property__gallery {
    position: sticky;
    top: 6rem;
  }
  .property__gallery-main img {
    height: 450px;
  }
  .property__gallery-thumb {
    height: 90px;
  }
  .property__title {
    font-size: 1.75rem;
  }
  .property__price {
    font-size: 2rem;
  }
  .property__price span {
    font-size: 2.5rem;
  }
  .property__details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .property__detail-item {
    padding: 1rem;
    background-color: var(--first-color-lighten);
    border-radius: 0.5rem;
    border-bottom: none;
    flex-direction: column;
    gap: 0.25rem;
  }
  .property__detail-value {
    text-align: left;
  }
  .breadcrumb {
    padding-top: 6rem;
  }
  .listing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .listing__card-img {
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .property__container {
    grid-template-columns: 1.2fr 1fr;
  }
}
/*=============== WHATSAPP FLOATING BUTTON ===============*/
.whatsapp-float {
  position: fixed;
  bottom: 7rem; /* Above mobile menu */
  right: 1.5rem;
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  /* Pulse animation */
}
.whatsapp-float__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.whatsapp-float__button i {
  font-size: 2rem;
  color: #fff;
}
.whatsapp-float__button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float__button:active {
  transform: scale(0.95);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--container-color);
  color: var(--text-color);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  white-space: nowrap;
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  /* Arrow */
}
.whatsapp-float__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--container-color);
}
.whatsapp-float__button:hover + .whatsapp-float__tooltip, .whatsapp-float__button:focus + .whatsapp-float__tooltip {
  opacity: 1;
  visibility: visible;
}
.whatsapp-float__pulse {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/* Mobile adjustments - stay above the fixed menu */
@media screen and (max-width: 1023px) {
  .whatsapp-float {
    bottom: 7rem; /* Above mobile nav menu */
    right: 1rem;
  }
  .whatsapp-float__button {
    width: 52px;
    height: 52px;
  }
  .whatsapp-float__button i {
    font-size: 1.75rem;
  }
  .whatsapp-float__pulse {
    width: 52px;
    height: 52px;
  }
  .whatsapp-float__tooltip {
    display: none; /* Hide tooltip on mobile to save space */
  }
}
/* Very small devices */
@media screen and (max-width: 350px) {
  .whatsapp-float {
    right: 0.75rem;
  }
  .whatsapp-float__button {
    width: 48px;
    height: 48px;
  }
  .whatsapp-float__button i {
    font-size: 1.5rem;
  }
  .whatsapp-float__pulse {
    width: 48px;
    height: 48px;
  }
}
/* Desktop - can be lower since no mobile menu */
@media screen and (min-width: 1024px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }
  .whatsapp-float__button {
    width: 60px;
    height: 60px;
  }
  .whatsapp-float__button i {
    font-size: 2.25rem;
  }
  .whatsapp-float__pulse {
    width: 60px;
    height: 60px;
  }
}
/* Large screens */
@media screen and (min-width: 2048px) {
  .whatsapp-float {
    bottom: 3rem;
    right: 3rem;
  }
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .section {
    padding: 3.5rem 0 1rem;
  }
  .home {
    padding-bottom: 0;
  }
  .contact__card {
    grid-template-columns: repeat(1, 180px);
    justify-content: center;
  }
  .popular__card {
    max-width: 280px;
  }
}
/* Mobile Swiper improvements */
@media screen and (max-width: 576px) {
  .popular__container.swiper {
    padding: 1rem 0 4rem;
    overflow: visible;
  }
  .swiper-wrapper {
    padding: 0 0.5rem;
  }
  .popular__card {
    max-width: 290px;
  }
}
@media screen and (max-width: 320px) {
  .nav__menu {
    padding: 1.3rem 1.5rem;
  }
  .home__value {
    column-gap: 1rem;
  }
  .home__img {
    width: 220px;
    height: 280px;
  }
  .home__orbe {
    width: 240px;
    height: 264px;
  }
  .logos__container {
    gap: 2rem 1rem;
  }
  .popular__card {
    max-width: 260px;
    padding: 0.5rem 0.5rem 0.75rem;
  }
  .value__img,
  .contact__img {
    width: 220px;
    height: 260px;
  }
  .value__orbe,
  .contact__orbe {
    width: 236px;
    height: 280px;
  }
  .subscribe__container {
    padding: 2rem 1rem;
  }
  .footer__content {
    gap: 2.5rem;
  }
}
/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__menu {
    width: 342px;
  }
  .home__search {
    width: 412px;
  }
  .contact__card {
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }
  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
}
@media screen and (min-width: 767px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }
  .home__orbe {
    align-self: flex-end;
  }
  .home__data {
    padding-bottom: 2rem;
  }
  .logos__container {
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }
  .value__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .contact__images {
    order: 1;
  }
  .contact__card {
    justify-content: initial;
  }
  .subscribe__container {
    padding: 3rem 13rem;
  }
  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
}
/* For large devices */
@media screen and (min-width: 1023px) {
  .section {
    padding: 7.5rem 0 1rem;
  }
  .section__title {
    font-size: 2.25rem;
  }
  .section__subtitle {
    font-size: var(--normal-font-size);
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__menu {
    width: initial;
    margin-left: auto;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    color: var(--text-color-light);
  }
  .nav__link i {
    display: none;
  }
  .nav__button {
    display: inline-block;
  }
  .active-link {
    background: none;
    box-shadow: none;
    color: var(--first-color);
    font-weight: var(--font-medium);
  }
  .change-theme {
    margin: 0 3rem;
    color: var(--text-color-light);
  }
  .scroll-header .nav__link,
  .scroll-header .change-theme {
    color: var(--text-color);
  }
  .scroll-header .active-link {
    color: var(--first-color);
  }
  .home {
    padding-bottom: 0;
  }
  .home__container {
    padding-top: 5rem;
    column-gap: 2rem;
  }
  .home__data {
    padding-bottom: 4rem;
  }
  .home__title {
    margin-bottom: 2rem;
  }
  .home__description, .home__search {
    margin-bottom: 3rem;
  }
  .home__value {
    column-gap: 3.5rem;
  }
  .home__orbe {
    width: 504px;
    height: 611px;
    border-radius: 256px 256px 0 0;
  }
  .home__img {
    width: 472px;
    height: 634px;
    border-radius: 236px 236px 12px 12px;
    bottom: -2.5rem;
  }
  .logos__img img {
    height: 100px;
  }
  .popular__container {
    padding-top: 3rem;
  }
  .popular__card {
    width: 320px;
    padding: 0.75rem 0.75rem 2rem;
  }
  .popular__data {
    padding: 0 0.25rem 0 0.75rem;
  }
  .value__container,
  .contact__container {
    align-items: flex-start;
    column-gap: 5rem;
  }
  .value__orbe,
  .contact__orbe {
    width: 501px;
    height: 641px;
    border-radius: 258px 258px 16px 16px;
  }
  .value__img,
  .contact__img {
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }
  .value__img img,
  .contact__img img {
    max-width: initial;
    width: 490px;
  }
  .value__description,
  .contact__description {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }
  .value__accordion-title {
    font-size: var(--normal-font-size);
  }
  .value__accordion-item {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }
  .value__accordion-description {
    padding-bottom: 1rem;
    font-size: var(--small-font-size);
  }
  .contact__card {
    grid-template-columns: repeat(2, 200px);
  }
  .contact__card-box {
    padding: 28px 1.5rem 1.5rem;
  }
  .subscribe__container {
    padding: 4rem 10rem 4.5rem;
    border-radius: 2rem;
    border: 12px solid var(--first-color-light);
  }
  .subscribe__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .subscribe__description {
    font-size: var(--normal-font-size);
    padding: 0 8rem;
  }
  .subscribe__button {
    font-size: var(--normal-font-size);
  }
  .footer__content {
    grid-template-columns: repeat(4, max-content);
  }
  .footer__title {
    margin-bottom: 1.5rem;
  }
  .footer__links {
    row-gap: 1rem;
  }
  .footer__info {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 2rem;
  }
  .show-scroll {
    bottom: 3rem;
    right: 3rem;
  }
}
@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .home__container {
    column-gap: 4rem;
  }
}
/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px) {
  body {
    zoom: 1.5;
  }
}
@media screen and (min-width: 3840px) {
  body {
    zoom: 2;
  }
}
/*=============== MOBILE FIXES ===============*/
/* Correções globais para dispositivos móveis */
/* ===== SWIPER/CARROSSEL - HOME ===== */
@media screen and (max-width: 767px) {
  .popular__container {
    padding: 0;
  }
  .popular__container .swiper-wrapper {
    padding-bottom: 1rem;
  }
  .popular__card {
    width: 280px !important;
    margin: 0 auto;
  }
  /* Botões de navegação do Swiper */
  .swiper-button-next,
  .swiper-button-prev {
    display: flex !important;
    width: 35px;
    height: 35px;
    background: var(--container-color);
    border-radius: 50%;
    box-shadow: 0 2px 8px hsla(228, 66%, 45%, 0.2);
  }
  .swiper-button-next i,
  .swiper-button-prev i {
    font-size: 1.25rem;
  }
  .swiper-button-next {
    right: 0.5rem;
  }
  .swiper-button-prev {
    left: 0.5rem;
  }
  /* Botão Ver Todos */
  .popular__more {
    padding: 0 1rem;
    margin-top: 1.5rem;
  }
  .popular__more-button {
    width: 100%;
    justify-content: center;
  }
}
/* ===== PÁGINA DE LISTAGEM ===== */
@media screen and (max-width: 767px) {
  /* Header da listagem */
  .listing-header {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }
  .listing-header__description {
    font-size: var(--small-font-size);
  }
  /* Breadcrumb */
  .breadcrumb {
    padding-top: 4.5rem;
  }
  .breadcrumb__container {
    font-size: var(--smaller-font-size);
  }
  /* Filtros */
  .listing__filters {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .listing__results {
    font-size: var(--small-font-size);
  }
  .listing__sort {
    width: 100%;
  }
  .listing__sort-select {
    flex: 1;
  }
  /* Grid de cards */
  .listing__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  /* Cards de listagem */
  .listing__card-img-container {
    height: 200px;
  }
  .listing__card-img {
    height: 100%;
    object-fit: cover;
  }
  .listing__card-content {
    padding: 1rem;
  }
  .listing__card-title {
    font-size: var(--normal-font-size);
  }
  .listing__card-location {
    font-size: var(--smaller-font-size);
  }
  .listing__card-features {
    gap: 0.5rem;
    font-size: var(--smaller-font-size);
    flex-wrap: wrap;
  }
  .listing__card-features span {
    padding: 0.25rem 0.5rem;
  }
  .listing__card-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
  .listing__card-price {
    font-size: var(--normal-font-size);
  }
  .listing__card-price span {
    font-size: var(--h3-font-size);
  }
  .listing__card-action {
    font-size: var(--smaller-font-size);
  }
}
/* ===== PÁGINA DE DETALHES DO IMÓVEL ===== */
@media screen and (max-width: 767px) {
  .property {
    padding-top: 1rem;
  }
  .property__container {
    padding: 0 1rem;
  }
  /* Galeria principal */
  .property__gallery {
    /* Botões de navegação da galeria */
    /* Contador de fotos */
    /* Thumbnails */
  }
  .property__gallery-main {
    height: 250px;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
  }
  .property__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .property__gallery-prev, .property__gallery-next {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .property__gallery-prev i, .property__gallery-next i {
    font-size: 1.25rem;
    color: var(--title-color);
  }
  .property__gallery-prev {
    left: 0.5rem;
  }
  .property__gallery-next {
    right: 0.5rem;
  }
  .property__gallery-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: var(--smaller-font-size);
  }
  .property__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .property__gallery-thumbs::-webkit-scrollbar {
    height: 4px;
  }
  .property__gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--first-color-light);
    border-radius: 2px;
  }
  .property__gallery-thumb {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
  }
  .property__gallery-thumb.active, .property__gallery-thumb:hover {
    opacity: 1;
  }
  /* Informações do imóvel */
  .property__info {
    margin-top: 1.5rem;
  }
  .property__header-price {
    font-size: var(--h2-font-size);
  }
  .property__header-title {
    font-size: var(--h3-font-size);
  }
  .property__header-location {
    font-size: var(--small-font-size);
  }
  /* Features/Características */
  .property__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
  .property__features-item {
    padding: 0.75rem;
    font-size: var(--smaller-font-size);
  }
  .property__features-item i {
    font-size: 1.25rem;
  }
  /* Descrição */
  .property__description {
    font-size: var(--small-font-size);
    line-height: 1.6;
  }
  .property__description-title {
    font-size: var(--normal-font-size);
  }
  /* Tabela de detalhes */
  .property__details-table {
    font-size: var(--small-font-size);
  }
  .property__details-table td {
    padding: 0.75rem 0.5rem;
  }
  /* CTA / Botões de ação */
  .property__cta {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
  }
  .property__cta .button {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1rem;
  }
}
/* ===== SEÇÃO HOME - IMAGEM OVAL ===== */
@media screen and (max-width: 767px) {
  .home__images {
    justify-self: center;
    position: relative;
  }
  .home__orbe {
    width: 250px;
    height: 300px;
  }
  .home__img {
    width: 230px;
    height: 280px;
    overflow: hidden;
  }
  .home__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}
/* ===== SEÇÃO VALUE - IMAGEM OVAL ===== */
@media screen and (max-width: 767px) {
  .value__orbe {
    width: 250px;
    height: 300px;
  }
  .value__img {
    width: 230px;
    height: 280px;
  }
  .value__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ===== SEÇÃO CONTACT - IMAGEM OVAL E CARDS ===== */
@media screen and (max-width: 767px) {
  .contact__orbe {
    width: 250px;
    height: 300px;
  }
  .contact__img {
    width: 230px;
    height: 280px;
    overflow: hidden;
  }
  .contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Cards de contato - layout vertical em mobile */
  .contact__card {
    gap: 0.75rem;
  }
  .contact__card-box {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
  }
  .contact__card-info {
    width: 100%;
  }
  .contact__card-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .contact__card-description {
    white-space: normal;
    word-break: break-word;
  }
  .contact__description {
    margin-bottom: 1.5rem;
  }
}
/* ===== HEADER/NAV MOBILE ===== */
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, 0.15);
    width: 90%;
    max-width: 360px;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    z-index: var(--z-fixed);
  }
  .nav__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.25rem;
    font-size: var(--smaller-font-size);
    color: var(--text-color);
    transition: color 0.3s;
  }
  .nav__link i {
    font-size: 1.25rem;
  }
  .nav__link:hover, .nav__link.active-link {
    color: var(--first-color);
  }
  .nav__button {
    display: none;
  }
}
/* ===== SUBSCRIBE/CTA SECTION ===== */
@media screen and (max-width: 767px) {
  .subscribe__container {
    padding: 2rem 1.5rem;
  }
  .subscribe__title {
    font-size: var(--h2-font-size);
  }
  .subscribe__description {
    font-size: var(--small-font-size);
  }
  .subscribe__button {
    width: 100%;
    justify-content: center;
  }
}
/* ===== FOOTER ===== */
@media screen and (max-width: 767px) {
  .footer__container {
    gap: 2rem;
  }
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .footer__title {
    font-size: var(--normal-font-size);
  }
  .footer__links {
    font-size: var(--small-font-size);
  }
}
/* ===== SCROLL UP BUTTON ===== */
@media screen and (max-width: 767px) {
  .scrollup {
    right: 1rem;
    bottom: 5rem;
  }
}
/* ===== TELAS MUITO PEQUENAS (< 350px) ===== */
@media screen and (max-width: 349px) {
  .container {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
  .home__title {
    font-size: var(--h1-font-size);
  }
  .home__value {
    gap: 0.5rem;
  }
  .home__value-number {
    font-size: var(--h2-font-size);
  }
  .property__gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .listing__card-features {
    gap: 0.25rem;
  }
  .nav__menu {
    width: 95%;
    padding: 0.75rem 1rem;
  }
}

/*# sourceMappingURL=styles.css.map */
