.picture__padding {
  padding-left: 38px;
}

/* 
* Cabecera
* -----------------------------------------------------
*/

html {
  overflow-x: hidden;
}
.cabecera {
  position: relative;
  height: 100vh;
  min-height: 900px;
}

.horizontal__rectangle.recta {
  position: absolute;
  right: 0;
  width: 40%;
  height: 158px;
  top: 22%;
}

.cabecera .fondo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 85%;
  height: 80%;
  background: url(../../images/cabecera.jpg) 50% 50% / cover;
}

#banner {
  padding: 100px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-top: 50px;
  font-size: 40px;
  color: white;
  background-color: #906e74;
}

#banner h3 {
  letter-spacing: normal;
}

#banner .btnWhite a button {
  border: none;
  color: #727176;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  background-color: white;
  letter-spacing: 2.8px;
  padding: 14px 44px;
  text-transform: uppercase;
}
#banner .btnWhite a button:hover {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.603));
}

.cabecera .banner {
  width: 35%;
  background-color: #fbf8ef;
  position: absolute;
  right: 0;
  height: 100%;
  z-index: -1;
}

.cabecera .title {
  left: 8%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
  z-index: 3;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}

.cabecera .title span {
  font-family: var(--primary-font-semibold);
  font-size: 20px;
}

/* 
* HOME - SECTION 1
* -----------------------------------------------------
*/

.paragraph {
  margin: auto;
  position: relative;
  width: 100%;
  max-width: 550px;
}

@media only screen and (width <=992px) {
  .paragraph {
    margin-top: 18px;
    width: 100%;
    max-width: max-content;
  }

  .animated__picture {
    padding: 0 !important;
  }

  .picture img {
    max-height: 500px;
    object-fit: cover;
  }
}

.number__one {
  top: 0;
  /* left: -6%; */
  left: 0;
  position: absolute;
  z-index: 2;
}

@media only screen and (width <=992px) {
  .number__one {
    top: -3%;
    left: 5%;
  }
}

/* 
* HOME - SECTION 2
* -----------------------------------------------------
*/

#section1 .paragraph h2 {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 800;
}

.vertical__rectangle {
  top: -40%;
  left: -10%;
  position: absolute;
  z-index: -1;
  background-color: #fbf8ef;
  width: 174px;
  height: 650px;
}

@media only screen and (width <=992px) {
  .vertical__rectangle {
    top: -10%;
    left: 0;
    position: absolute;
    z-index: -1;
    background-color: #fbf8ef;
    width: 174px;
    height: 300px;
  }
}

@media only screen and (width <=768px) {
  .vertical__rectangle {
    top: -4%;
    left: 0;
    position: absolute;
    z-index: -1;
    background-color: #fbf8ef;
    width: 120px;
    height: 300px;
  }
}

.fondo {
  top: 0;
  bottom: 0;
  height: 100%;
  left: 4%;
  position: absolute;
}

.paragraph__two {
  margin: auto 14%;
  margin-top: 15%;
  position: relative;
  width: 480px;
}

@media only screen and (width <=992px) {
  .paragraph__two {
    margin-top: 18px;
    margin: auto auto;
    width: 100%;
  }
}

/* 
* HOME - SECTION 3
* -----------------------------------------------------
*/

.number__two {
  top: 7%;
  left: 23%;
  position: absolute;
  z-index: 2;
}

@media only screen and (width <=992px) {
  .number__two {
    top: -3%;
    left: 3%;
  }
}

/* 
* HOME - SECTION 4
* -----------------------------------------------------
*/

.container.container__right {
  margin-right: 0px;
  max-width: 1636px;
}

.horizontal__rectangle {
  background-color: #fbf8ef;
  width: 100%;
  height: 158px;
}

@media only screen and (width <=992px) {
  .horizontal__rectangle {
    display: none;
  }
}

.home__cards {
  display: grid;
  padding: 0px 30px;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

.home__cards .black__opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Color negro con opacidad (0.5) */
  opacity: 1;
  /* Oculta inicialmente la superposición */
  transition: opacity 300ms ease-in;
  /* Agrega una transición suave de opacidad */
}

.home__cards .black__opacity:hover {
  opacity: 0;
  /* Muestra la superposición al pasar el ratón por encima */
}

.home__cards img {
  width: 100%;
}

.home__cards .picture:hover img {
  transition: 400ms ease-in;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .home__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.fadeIn__text {
  transform: translateY(-10px);
  opacity: 0;
}

@media only screen and (width <=992px) {
  .fadeIn__text {
    transform: translateY(0);
    opacity: 1;
  }
}

.home__cards .fadeIn__text--container:hover .fadeIn__text {
  opacity: 1;
  transition: transform 300ms ease-in;
  transform: translateY(0);
}

/* 
* SECCION SERVICIOS - HOME
* -----------------------------------------------------
*/

#servicios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media only screen and (width <=992px) {
  #servicios {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }
}

.servicios__container {
  height: 50%;
  overflow: hidden;
}

.servicios__container--one,
.servicios__container--two {
  height: 412px;
}

.servicios__container--one {
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicios__container--two {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (width <=992px) {
  .servicios__container {
    height: 100%;
    overflow: auto;
  }

  .servicios__container--one {
    display: none;
  }
}

.servicios__container--one p {
  margin: 0 auto;
  text-align: center;
  width: 62%;
}

.servicios__container--two p {
  margin: 0 auto;
  width: 80%;
}

/* 
* SECCION ICONS - HOME
* -----------------------------------------------------
*/

.icons {
  padding-bottom: 100px;
  margin-bottom: 0;
}

.icons span {
  color: #906e74;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.24px;
}

.icon-container p {
  font-family: var(--tercera-font);
}

.icons .image {
  margin: 60px 0px;
}

.icons .icon-container {
  width: 20%;
  min-width: 200px;
  margin-bottom: 30px;
}

.icons__white--box {
  background-color: #ffffff;
}

.icons__box--text {
  margin: 0 auto;
  padding: 48px 0;
  width: 90%;
}

.icons__box--text p {
  margin: 0 auto;
  width: 70%;
}

@media only screen and (width <=992px) {
  .icons__box--text {
    padding: 18px 0;
  }

  .icons__box--text,
  .icons__box--text p {
    width: 100%;
  }
}

/* 
* SECCION 01 SERVICIOS PARTICULARES
* -----------------------------------------------------
*/

.paragraph__servicios {
  margin: 0 auto;
  position: relative;
  width: 560px;
}

@media only screen and (width <=992px) {
  .paragraph__servicios {
    width: 100%;
  }
}

.icons__servicios {
  padding-bottom: 100px;
}

@media only screen and (width <=992px) {
  .icons__servicios {
    padding-bottom: 0;
  }
}

/* 
* Principales Proyectos - SERVICIOS
* -----------------------------------------------------
*/

.principales__proyectos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

@media (max-width: 768px) {
  .principales__proyectos {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

.proyectos__icons img {
  height: 24px;
  width: 24px;
}

.proyectos__icons p {
  width: 115%;
}

/* 
* Sobre Nosotros
* -----------------------------------------------------
*/

#aboutus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media only screen and (width <=992px) {
  #aboutus {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }
}

.no__margin--top {
  margin-top: -420px;
}

/* 
* Sobre Nosotros - Equipo
* -----------------------------------------------------
*/

.picture__hover--text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  color: #ffffff;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* Color de fondo negro con opacidad */
  transition: height 500ms ease-in;
  /* Duración y tipo de transición */
  z-index: 1;
  /* Asegura que esté sobre la imagen */
}

@media only screen and (width <=768px) {
  .promocion__cabecera--vendido {
    width: 90px;
    height: 90px;
  }
}

.promocion__cabecera img {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.promociones__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (width <=992px) {
  .promociones__info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .promociones__info > div {
    border-bottom: 1px solid var(--color-numbers);
    padding-bottom: 24px;
  }

  .promociones__info > div:last-of-type {
    border-bottom: 0;
  }
}

.promociones__info h3 {
  font-size: 4rem;
}

@media only screen and (width <=992px) {
  .promociones__info h3 {
    font-size: 2.4rem;
  }
}

.promociones__info h4 {
  color: var(--grey-dark);
}

.promociones__info p {
  margin: 0 auto;
  width: 77%;
}

@media only screen and (width <=992px) {
  .promociones__info p {
    margin: 0 auto;
    width: 100%;
  }
}

.paragraph__promocion {
  margin: auto;
  position: relative;
  width: 580px;
}

@media only screen and (width <=992px) {
  .paragraph__promocion {
    width: 100%;
  }
}

.promociones__video iframe {
  height: 600px;
  width: 100%;
}

@media only screen and (width <=992px) {
  .promociones__video iframe {
    height: 240px;
    width: 100%;
  }
}

/* 
* CONTACTO
* -----------------------------------------------------
*/

.contacto {
  padding-bottom: 120px;
  transform: translateY(-124px);
}

.contacto p {
  margin: 0 auto;
  width: 50%;
}

@media only screen and (width <=992px) {
  .contacto {
    padding-bottom: 0;
  }

  .contacto p {
    width: 100%;
  }
}

/* 
* Responsive
* -----------------------------------------------------
*/
@media only screen and (max-width: 1700px) {
  .cabecera .banner {
    width: 40%;
  }
  .number__two {
    left: 9%;
  }
}

@media only screen and (max-width: 1400px) {
  .number__two {
    left: 3%;
  }
  .cabecera .fondo {
    width: 90%;
  }

  #section1 .paragraph h2 {
    font-size: 40px;
  }

  .cabecera .title span {
    line-height: 28px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 1200px) {
  .number__two {
    top: 5%;
  }

  #banner {
    padding: 50px;
  }

  #banner h3 {
    font-size: 30px;
  }

  #section1 .paragraph h2 {
    font-size: 32px;
  }

  .cabecera nav {
    margin-left: 40px;
  }

  .cabecera .title {
    left: 6%;
  }
}

@media only screen and (max-width: 992px) {
  .caracteristicas {
    padding: 0px 20px;
    margin: 30px 0px;
  }

  .cabecera .title span {
    font-size: 17px;
    line-height: 24px;
  }

  .cabecera nav {
    height: 70px;
    margin-left: 35px;
    padding-bottom: 0;
  }

  .cabecera .fondo {
    height: 50%;
    top: 33.5%;
    width: 100%;
  }

  .cabecera .title {
    top: 32%;
  }

  #section1 {
    margin-top: 40px !important;
  }

  #section1 .container .row {
    flex-wrap: wrap-reverse;
  }

  #section1 .paragraph h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .home__cards {
    padding: 0px 20px;
  }

  #section1 .paragraph h2 {
    font-size: 27px;
  }
  .icons .image {
    margin: 0;
  }

  .icons {
    padding-bottom: 50px;
  }

  .icons .container {
    padding-top: 20px !important;
  }

  .icons span {
    font-size: 20px;
  }

  #banner {
    padding: 30px;
  }

  #banner h3 {
    font-size: 24px;
  }

  .caracteristicas p.color__numbers {
    margin-bottom: 0;
  }

  .title h1 {
    font-size: 40px;
  }

  .cabecera .title span {
    font-size: 15px;
    line-height: 21px;
  }
  .cabecera nav {
    margin-left: 0px;
  }
  .fondo {
    height: 50%;
  }
}

@media only screen and (max-width: 480px) {
  #banner {
    margin-top: 0;
  }

  .espacio {
    margin-left: 20px !important;
  }
  .icons span,
  #banner h3 {
    font-size: 17px;
  }
  #section1 .paragraph h2 {
    font-size: 20px;
  }
  .title h1 {
    font-size: 28px;
    margin-bottom: 10px !important;
  }

  .icons .icon-container {
    min-width: 150px;
  }

  .icons .icon-container img {
    width: 45px;
  }

  .cabecera .title {
    width: 90%;
    left: 7%;
  }
  #viviendas .p-5 {
    padding: 30px !important;
  }
  .cabecera .title span {
    font-size: 12px;
    max-width: 319px;
    display: block;
    line-height: 18px;
  }

  .cabecera .title span br {
    display: none;
  }
}

/* ***********************************************************************
* PÁGINA DE COMPROBANTE
* ************************************************************************/
#comprobante {
  align-items: center;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
#comprobante img {
  height: 148px;
}
#comprobante h1 {
  padding: 24px 0;
  text-align: center;
  width: 470px;
}
#comprobante p {
  color: #1c1b1a;
  font-size: 20px;
  text-align: center;
  width: 520px;
}
#comprobante h4 {
  border-bottom: 2px solid rgb(28, 27, 26);
  color: rgb(28, 27, 26);
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 16px;
  padding-bottom: 8px;
  padding-top: 24px;
  text-decoration-color: transparent;
}
#comprobante a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}
#footer p {
  font-size: 0.8rem;
}
#footer a {
  font-family: 'Roboto-Medium';
}
@media (width <= 992px) {
  #comprobante h1,
  #comprobante p {
    width: 100%;
  }
}
