/* reset */
h1,
h2.h3.h4,
h5,
h6,
p {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: var(--dark-gray);
}
/*  */
:root {
  /* colors */
  --white: #fff;
  --black: #363535;
  --dark-black: #101010;
  --ligth-black: #2d2d2d;
  --dark-gray: #7b7b7b;
  --light-gray: #b8b8b8;
  --dark-blue: #004fab;
  --more-light-gray: #9ebcde;
  /* weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;
  --fw-900: 900;

  /* OTROS */
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 64px;
  --width-container: 1200px;
}

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  font-family: "Noto Sans", sans-serif;
}
.popins {
  font-family: "Poppins", sans-serif;
}
/* Font Weight */
.fw-300 {
  font-weight: var(--fw-300);
}
.fw-400 {
  font-weight: var(--fw-400);
}
.fw-500 {
  font-weight: var(--fw-500);
}
.fw-700 {
  font-weight: var(--fw-700);
}
.fw-900 {
  font-weight: var(--fw-900);
}

.fz-10 {
  font-size: 0.625rem;
}
.fz-12 {
  font-size: 0.75rem;
}
.fz-14 {
  font-size: 0.875rem;
}
.fz-16 {
  font-size: 1rem;
}
.fz-18 {
  font-size: 1.125rem;
}
.fz-20 {
  font-size: 1.25rem;
}
.fz-21 {
  font-size: 1.312rem;
}
.fz-25 {
  font-size: 1.562rem;
}
.fz-30 {
  font-size: 1.875rem;
}
.fz-40 {
  font-size: 2.5rem;
}
/* BG COLOR */
.bg-dark-gray {
  background-color: var(--dark-gray);
}
.bg-light-gray {
  background-color: var(--light-gray);
}
.bg-dark-black {
  background-color: var(--black);
}
.bg-more-light-gray {
  background-color: var(--dark-blue);
}
/* TEXT COLOR */
.text-dark-gray {
  color: var(--dark-gray);
  /*color: #fff;*/
}
.text-light-black {
  color: var(--ligth-black);
}
.text-dark-black {
  color: var(--dark-black);
}
.text-white {
  color: #fff;
}
.text-blue {
  color: var(--dark-blue);
}
.text-ligth-gray {
  color: var(--light-gray);
}
.outline-solid {
  outline: solid 1px var(--dark-gray);
}
.bordes-all {
  border: 1px solid var(--light-gray);
}
.bordes-t {
  border-top: 1px solid var(--light-gray);
}
.bordes-b {
  border-bottom: 1px solid var(--light-gray);
}
.bordes-s {
  border-left: 1px solid var(--light-gray);
}
.bordes-e {
  border-right: 1px solid var(--light-gray);
}
.border-radius-15px {
  border-radius: 15px;
}
/* BARRA NAV */
.nav-custom {
  background-color: transparent;
}
.nav-link {
  color: #fff !important;
  font-weight: 600 !important;
}
.link-black {
  color: #000 !important;
  font-weight: 600 !important;
}
body::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--dark-gray); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--more-light-gray); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid var(--dark-gray); /* creates padding around scroll thumb */
}
.card-transparent {
  background-color: rgba(171, 171, 171, 0.57);
}
.modal-content {
  border-radius: 0;
}
.form-control {
  border-radius: 10px;
  border: 2px solid #ebebeb;
  background-color: #ebebeb;
  font-size: 14px;
  color: var(--dark-gray);
}
.form-control-1 {
  border-radius: 10px;
  border: 2px solid #ebebeb;
  font-size: 14px;
  color: var(--dark-gray);
}
.form-floating > label {
  color: var(--dark-gray);
  font-size: 14px;
}
.form-control:active {
  border: 2px solid var(--light-gray);
  background-color: #fff;
}
.form-control:focus {
  border: 2px solid var(--light-gray);
  background-color: #fff;
  box-shadow: none;
}
.btn-primary {
  background-color: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 0;
}
.btn-primary:hover {
  background-color: var(--dark-gray);
  border: 1px solid var(--dark-gray);
}
.btn-primary:active {
  background-color: var(--dark-gray) !important;
  border: 1px solid var(--dark-gray) !important;
}
.btn-primary:focus {
  background-color: var(--dark-gray) !important;
  border: 1px solid var(--dark-gray) !important;
}
.btn-primary-white {
  background-color: var(--white);
  border: 1px solid var(--border_color);
  border-radius: 15px;
  color: var(--dark-black);
}
.btn-primary-white:hover {
  background-color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  color: var(--white);
}
.btn-primary-white:active {
  background-color: var(--dark-blue) !important;
  border: 1px solid var(--dark-blue) !important;
  color: var(--white);
}
.btn-primary-white:focus {
  background-color: var(--dark-blue) !important;
  border: 1px solid var(--dark-blue) !important;
  color: var(--white);
}
.btn-primary-blue {
  background-color: var(--dark-blue);
  border: 1px solid var(--dark-blue);
  border-radius: 10px;
  color: var(--white);
}
.btn-primary-blue:hover {
  background-color: var(--white);
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
}
.btn-primary-blue:active {
  background-color: var(--white) !important;
  border: 1px solid var(--dark-blue) !important;
  color: var(--dark-blue);
}
.btn-primary-blue:focus {
  background-color: var(--white) !important;
  border: 1px solid var(--dark-blue) !important;
  color: var(--dark-blue);
}

/* VIDEO BG */
.contenedor-video {
  position: relative;
  height: 60vh;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  position: relative;
  top: 50%;
  left: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.contenido {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contenido .form {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  justify-content: flex-end;
  align-items: center;
}
.graubg {
  background-color: #ffffffb0;
  border-radius: 20px;
  padding: 2rem 2rem;
}
.span-select {
  width: 1px;
  height: 100%;
  background-color: #dbdbdb;
  display: block;
}
#buscadorHome {
  background-color: #e7e7e77e;
  padding: 2rem;
  position: absolute;
  top: 700px;
}
#FormBuscar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
}
#FormBuscar select {
  /* border: 2px solid var(--light-gray);
  padding: 0.5rem 1rem;
  appearance: none;
  font-weight: 600;
  color: var(--light-gray); */
  border: none;
  background-color: transparent;
}
#FormModBuscar select {
  border: 2px solid var(--light-gray);
  padding: 0.5rem 1rem;
  appearance: none;
  font-weight: 600;
  color: var(--light-gray);
}
#formContacto input {
  border: 2px solid var(--light-gray);
  padding: 0.5rem 1rem;
  appearance: none;
  font-weight: 600;
  color: var(--light-gray);
}
.btn-buscar {
  border: 2px solid var(--light-gray);
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border-radius: 0;
  color: #fff;
  font-weight: var(--fw-700);
}

/* CARDS PROPIEDADES DESTACADAS */
.hero-section {
  align-items: flex-start;
  display: flex;
  min-height: 100%;
  justify-content: center;
  padding: var(--spacing-xxl) var(--spacing-l);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: var(--spacing-l);
  grid-row-gap: var(--spacing-l);
  max-width: var(--width-container);
  width: 100%;
}
.logo__header {
  max-width: 60px;
}
.quien-soy {
  margin-top: -32px;
}
.link-footer-active {
  position: relative; /* Necesario para posicionar el pseudo elemento */
  color: var(--white); /* Color del enlace */
  width: fit-content;
}

.link-footer-active::before {
  content: ""; /* Hace que el pseudo elemento se muestre */
  position: absolute; /* Posicionamiento absoluto */
  left: 0; /* Alineado a la izquierda */
  bottom: -4px; /* Alineado a la parte inferior */
  height: 2px; /* Altura de la línea de subrayado */
  width: 60px; /* Ancho completo del enlace */
  background-color: var(--white); /* Color del "subrayado" */
}
@media (min-width: 540px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo__header {
    max-width: 2400px;
  }
  .graubg {
    background-color: var(--white);
  }
}

@media (min-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo__header {
    max-width: 275px;
  }

  .link-active {
    position: relative; /* Necesario para posicionar el pseudo elemento */
    color: var(--white); /* Color del enlace */
    text-decoration: none; /* Sin subrayado predeterminado */
  }

  .link-active::before {
    content: ""; /* Hace que el pseudo elemento se muestre */
    position: absolute; /* Posicionamiento absoluto */
    left: 0; /* Alineado a la izquierda */
    bottom: 6px; /* Alineado a la parte inferior */
    height: 2px; /* Altura de la línea de subrayado */
    width: 100%; /* Ancho completo del enlace */
    background-color: var(--white); /* Color del "subrayado" */
    transform: scaleX(0.8); /* Inicialmente oculto */
    transition: transform 0.3s ease; /* Transición suave */
  }
  .black-active {
    position: relative; /* Necesario para posicionar el pseudo elemento */
    color: var(--dark-black); /* Color del enlace */
    text-decoration: none; /* Sin subrayado predeterminado */
  }

  .black-active::before {
    content: ""; /* Hace que el pseudo elemento se muestre */
    position: absolute; /* Posicionamiento absoluto */
    left: 0; /* Alineado a la izquierda */
    bottom: 6px; /* Alineado a la parte inferior */
    height: 2px; /* Altura de la línea de subrayado */
    width: 100%; /* Ancho completo del enlace */
    background-color: var(--dark-black); /* Color del "subrayado" */
    transform: scaleX(0.8); /* Inicialmente oculto */
    transition: transform 0.3s ease; /* Transición suave */
  }
  /* .link-active:hover::before {
  transform: scaleX(0.8); 
} */
}

.card {
  list-style: none;
  position: relative;
  border-radius: var(--spacing-l);
  background-color: var(--more-light-graygray);
  /* max-height: 400px; */
}
.card:hover .card__background {
  filter: brightness(1.1) saturate(1) contrast(0.85);
}
.cards img {
  max-height: 178px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.cards .card__contents {
  background-color: var(--white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cucarda {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.card:before {
  content: "";
  display: block;
  padding-bottom: 150%;
  width: 100%;
}
.ver-mas {
  border-radius: 20px;
}
.card__background {
  background-size: cover;
  background-position: center;
  border-radius: var(--spacing-l);
  bottom: 0;
  filter: brightness(1) saturate(1.2) contrast(0.85);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  height: auto;
}
.card__content {
  left: 0;
  padding: var(--spacing-l);
  position: absolute;
  bottom: 0;
}

.card__category {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-s);
  text-transform: uppercase;
}

.card__heading {
  color: var(--text-lighter);
  font-size: 1.9rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  word-spacing: 100vw;
}
/*FIN CARDS PROPIEDADES DESTACADAS */

/* AMENITIES CAROUSEL */
.amenity-item {
    text-align: center;
    padding: 15px;
}

.amenity-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.amenity-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: var(--dark-black);
}


/* WHATS APP */
.sticky {
  display: block; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 9;
}
.sticky img {
  width: 60px;
}
/* END WHATS APP */

/* PROPIEDAD CARUSEL LIGHTBOX */
.contenedor {
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
  height: auto;
}

.mySlides a img {
  /* transform: translate(-30%); */
  height: 44dvh;
  width: 90dvw;
  object-fit: cover;
}
.cursor {
  cursor: pointer;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  /* margin-top: -50px; */
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;

  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(236, 236, 236, 0.8);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 16.66%;
}
.demo {
  opacity: 0.6;
}
.active,
.demo:hover {
  opacity: 1;
}

/* @media (max-width: 600px) {
  .fz-20-small {
    font-size: 0.7rem;
  }
} */
/* .owl-nav{
  position: absolute;
  top: 0; */
/* top: 50%; */
/* left: 50%; */
/*   transform: translate(-50%, -50%);
} */
.owl-prev {
  position: absolute;
  top: 50%;
  left: -0px;
  transform: translate(-50%, -50%);
}
.owl-next {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(-50%, -50%);
}
.owl-prev span {
  font-size: 3rem;
}
.owl-next span {
  font-size: 3rem;
}
.owl-dots {
  display: none;
}
.stickys {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.container-video video {
  width: 100%;
  max-width: 800px;
  border-radius: 50px;
}
.container-propiedades {
  border-top-right-radius: 180px;
}
@media (max-width: 992px) {
  .nav-bg-toggle {
    background-color: var(--color-bg-nav);
  }
  .span-select {
    display: none;
  }

  #FormBuscar {
    flex-direction: column;
    flex-wrap: wrap;
  }
  #FormBuscar select {
    border: 2px solid var(--dark-black);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    /* appearance: none; */
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 20px;
  }
  .container-video video {
    border-radius: 0px;
  }
  .container-propiedades {
    border-top-right-radius: 0px;
  }
  .news-logo {
    width: 40px;
    height: 40px;
  }
}
.detalle_more_data .rounded-circle {
  width: 45px;
  height: 45px;
}
.detalle_more_data img {
  width: 25px;
}
.detalle_more_data h3 {
  font-size: 1rem;
  font-weight: bolder;
}
.detalle_more_data p {
  font-size: 0.875rem;
}
@media (width > 950px) {
  .detalle_more_data .rounded-circle {
    width: 70px;
    height: 70px;
  }
  .detalle_more_data h3 {
    font-size: 1.25rem;
  }
  .detalle_more_data p {
    font-size: 1rem;
  }
}
