/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Estilo del encabezado y navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #0D2C4D;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #d98b3e;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    width: 100%;
    margin: auto;
    padding: 10px 5% 10px 15%;
}

nav a {
    font-size: 18px;
}

.logo img {
    height: 90px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #d98b3e;
}


/* Menú hamburguesa oculto por defecto */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 4px;
    width: 30px;
    background: #d98b3e;
    margin: 4px 15px;
    transition: 0.4s;
}

main {
    margin-top: 120px;
}

.home1 {
    width: 100%;
    background-image: url('/images/home1_v2.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 120px);
}
.home2 {
    width: 100%;
    background-image: url('/images/quienes_somos_v2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 120px);
}

.home1_content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    text-align: left;
}

.home1_content h2 {
    font-size: clamp(1rem, 5vw, 6rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
}

.home1_content h1 {
    font-size: clamp(3rem, 7vw, 9rem);
    color: #d98b3e;
    margin-bottom: 0;
}

.home1_content p {
    font-size: clamp(0.5rem, 2.9vw, 3rem);
    margin: 0;
    color: #ffffff;
    font-style: italic;
}

.texto-boton {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.texto-boton h4 {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.btn-agenda-cita {
    float: left;
    background-color: #d98b3e;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: clamp(1rem, 2vw, 2rem);
    cursor: pointer;
    margin-right: 25px;
}

.home1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top,
            rgba(13, 44, 77, 1),
            rgba(13, 44, 77, 1),
            rgba(13, 44, 77, 0.8),
            rgba(13, 44, 77, 0.6),
            rgba(13, 44, 77, 0));

    pointer-events: none;
}
.home2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top,
            rgba(13, 44, 77, 1),
            rgba(13, 44, 77, 1),
            rgba(13, 44, 77, 0.8),
            rgba(13, 44, 77, 0.6),
            rgba(13, 44, 77, 0));

    pointer-events: none;
}
.quienes_somos {
    width: 100%;
}

.quienes_somos h1 {
    font-size: 4rem;
    color: #0D2C4D;
}

.quienes_somos p {
    font-size: 1.5rem;
    color: #0D2C4D;
}

.quienes_somos_content {
    display: flex;
}

.quienes_somos_text {
    max-width: 50%;
    text-align: justify;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 2% 5% 0 5%;
}

/* zona residencial*/

.zona_residencial {
    background-color: #0D2C4D;
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 25px;
    z-index: 1;
}

.zona_residencial h1 {
    text-align: center;
    color: #d98b3e;
    font-size: 4rem;
}

.zona_residencial p {
    color: #ffffff;
    font-size: 1.2rem;
}

.btn-consulta-disponibilidad {
    background-color: #d98b3e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
}

.zona_residencial_text {
    text-align: justify;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}

.zona_residencial_imgs {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.zona_residencial_imgs img {
    width: 35%;
}

/*ZONA COMERCIAL*/

.zona_comercial {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.zona_comercial h1 {
    text-align: center;
    color: #0D2C4D;
    font-size: 4rem;
}

.zona_comercial p {
    color: #0D2C4D;
    font-size: 1.2rem;
}

.zona_comercial_text {
    text-align: justify;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}

.zona_comercial_imgs {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.zona_comercial_imgs img {
    width: 35%;
}

/*CONTACTO*/

.contacto {
    background-color: #0D2C4D;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    margin-bottom: 0;
}

.contacto h1 {
    text-align: left;
    color: #ffffff;
    font-size: 4rem;
}

.contacto h2 {
    text-align: left;
    color: #ffffff;
    font-size: 2rem;
    font-style: italic;
}

.contacto p {
    text-align: left;
    color: #ffffff;
    font-size: 1.2rem;
}

.contacto_formulario {
    display: flex;
    justify-content: center;
    gap: 20%;
    padding: 40px 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

/*RESIDENCIAL*/
.residencial-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: white;
    padding: 40px;
    width: 35%;
    max-width: 500px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.info-box h1 {
    font-size: 2.5rem;
    color: #002147;
    margin-bottom: 10px;
}

.info-box h2 {
    font-size: 1.5rem;
    color: #002147;
    font-weight: bold;
    margin-bottom: 5px;
}

.info-box p {
    font-size: 1rem;
    color: #003366;
    margin-bottom: 20px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    font-size: 1rem;
    color: #002147;
    margin-bottom: 10px;
}

/*todo lo que necesitas para vivir la vida que siempore soñaste*/
.distrito-section {
    background-color: #072e52;
    color: white;
    padding: 60px 20px;
    font-family: sans-serif;
}

.distrito-section .content {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    margin-top: 30px;
    color: white;
    text-align: left;
    text-align: center;
}

.highlight {
    color: white;
    font-style: italic;
}

.features-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    align-items: center;
}

.features-images-cluster {
    position: relative;
    width: 50%;
    min-height: 570px;
    flex-shrink: 0;
}

.features-images-cluster .img {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.img-top-left {
    top: 0;
    left: 10px;
}

.img-bottom-left {
    bottom: 0;
    left: 0;
}

.img-center-right {
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.features-text {
    flex: 1;
    margin-left: 50px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #f6c17c;
}

.features-text p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.ubicacion,
.cierre {
    text-align: left;
    margin-top: 20px;
    margin-left: 25px;
    font-size: 1rem;
}

.cierre {
    font-style:italic;
    color: #f6c17c;
    font-size: 2rem;;
}

.distrito-section-amenidades .content-amenidades {
    max-width: 1200px;
    margin: 0 auto;
}

.features-text-amenidades p {
    font-size: 1.5rem;
    line-height: 1.5;
}
.lista-con-puntos {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-con-puntos li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
}

.lista-con-puntos li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #f6c17c;/* Cambia el color aquí */
  border-radius: 50%;
}

.financiamiento {
  background-color: #002a4e;
  color: white;
  padding: 2rem;
  margin-bottom: 50px;
}
.financiamiento-header {
  text-align: center;
}

.financiamiento-title {
  color: #f2a037;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.financiamiento-subtitle {
  font-size: 1.2rem;
}

.financiamiento-planes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.financiamiento-plan {
  background-color: #d6a84d;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 300px;
  text-align: center;
  color: #002a4e;
}

.plan-title {
  font-weight: bold;
  font-size: 1.5rem;
}

.plan-details {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.financiamiento-footer {
  margin-top: 2rem;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}
.residencial img {
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 1595px) {
    .quienes_somos h1 {
        font-size: 3.5rem;
    }

    .quienes_somos p {
        font-size: 1.3rem;
    }

}

/*zona comercial*/
.zona-comercial {
    padding: 10px 10px 10px 5%;
  background-color: #ffffff;
  color: #0D2C4D;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.comercial-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.comercial-texto {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.comercial-texto h2 {
  font-size: 3em;
  color: #0D2C4D;
  margin-bottom: 10px;
}

.comercial-texto p {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #0D2C4D;
}

.comercial-texto ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1em;
}

.comercial-texto ul li {
  margin-bottom: 5px;
  border-left: 4px solid #0D2C4D;
  padding-left: 10px;
}

.comercial-img {
  flex: 1;
  max-width: 900px;
}

.comercial-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
/*zona medica*/
.zona-medica {
  background-color: #0D2C4D;
  color: white;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.zona-medica h2 {
  color: #d98b3e;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.zona-medica h3 {
  font-size: 2em;
  margin-bottom: 40px;
  font-weight: bold;
}

    .zona-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 60px;
    }

.zona-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  text-align: left;
}

.zona-img img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.zona-box ul {
  list-style: none;
  padding-left: 0;
  color: #d8a05e;
  font-size: 15px;
  line-height: 1.6;
}

.zona-box ul li strong {
  color: #ffffff;
}



@media (max-width: 768px) {
  .comercial-content {
    flex-direction: column;
    text-align: center;
  }

  .comercial-texto, .comercial-img {
    max-width: 100%;
  }

  .comercial-texto ul {
    text-align: left;
    padding-left: 0;
  }
       .zona-content {
  display: block;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}
.zona-img img {
  width: 280px;
  height: 280px;
  margin-bottom: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
.zona-box {
  display: block;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  text-align: left;
}
}


.zona-ubicacion {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fff;
}

.ubicacion-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.ubicacion-texto {
  flex: 1;
  min-width: 300px;
}

.ubicacion-texto h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #002b5c;
  margin-bottom: 20px;
}

.ubicacion-texto h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #002b5c;
  margin-bottom: 20px;
}

.ubicacion-texto p {
  font-size: 1.2rem;
  color: #002b5c;
  line-height: 1.6;
}

.ubicacion-texto strong {
  font-weight: bold;
}

.ubicacion-img {
  flex: 1;
  min-width: 300px;
}

.ubicacion-img img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.ubicacion1 img {
  display: block;
  margin: 0;
  padding: 0;
}

.ubicacion_vive{
  background-color: #0D2C4D;
  height: auto;
  padding-bottom: 50px;
}

.ubicacion_vive h1 {
  font-size: 4rem;
  color: #d98b3e;
  margin-bottom: 0;
  font-style: italic;
}
.ubicacion_vive h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0;
  font-style: italic;
}
.ubicacion_vive h3 {
  font-size: 3rem;
  color: #d98b3e;
  margin-bottom: 0;
  font-style: italic;
}

/*BLOG*/

.blog_home_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  text-align: left;
}

.blog_home_content h2 {
  font-size: 6rem;

  font-weight: 300; 
  color: #ffffff;
  letter-spacing: 2px; 
}

.blog_home_content h1 {
  font-size: 9rem;
  color: #d98b3e;
  margin-bottom: 0;
}

.blog_home_content p {
  font-size: 2.9rem;
  margin: 0;
  color: #ffffff;
  font-style: italic;
}

.blog_home_content h4 {
  font-size: 1rem;
  font-weight: 300; 
  color: #ffffff;
  letter-spacing: 2px; 
}
.blog img {
  display: block;
  margin: 0;
  padding: 0;
}

/*FAQ*/


.faq_home_content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  text-align: left;
}

.faq_home_content h2 {
  font-size: 6rem;

  font-weight: 300; 
  color: #ffffff;
  letter-spacing: 2px; 
}

.faq_home_content h1 {
  font-size: 9rem;
  color: #d98b3e;
  margin-bottom: 0;
}

.faq_home_content p {
  font-size: 2.9rem;
  margin: 0;
  color: #ffffff;
  font-style: italic;
}

.faq_home_content h4 {
  font-size: 1rem;
  font-weight: 300; 
  color: #ffffff;
  letter-spacing: 2px; 
}


.faq img {
  display: block;
  margin: 0;
  padding: 0;
}

.img-desktop {
  display: block;
}
.img-mobile {
  display: none;
}
@media (max-width: 1400px) {
    .navbar {
        padding: 10px 2% 10px 7%;
    }

    .quienes_somos h1 {
        font-size: 3.2rem;
    }

    .quienes_somos p {
        font-size: 1.1rem;
    }
        .zona-content {
  display: block;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}
.zona-img img {
  width: 280px;
  height: 280px;
  margin-bottom: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
}

@media (max-width: 1200px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        width: 100%;
        margin: auto;
        padding: 10px 10px 10px 10px;
    }

    .quienes_somos h1 {
        font-size: 3rem;
    }

    .quienes_somos p {
        font-size: 1rem;
    }
}

@media (max-width: 1100px) {
    main {
        margin-top: 100px;
    }

    nav a {
        font-size: 14px;
    }

    header {
        height: 100px;
    }

    .logo img {
        height: 70px;
    }

    .quienes_somos h1 {
        font-size: 2.5rem;
    }

    .quienes_somos p {
        font-size: 0.8rem;
    }
}

/* Responsive: menú hamburguesa */
@media (max-width: 850px) {
    .nav-links {
        position: fixed;
        top: 100px;
        right: -100%;
        height: auto;
        width: 200px;
        background: #0D2C4D;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 20px;
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .quienes_somos_content {
        display: block;
        margin-bottom: 25px;
    }

    .quienes_somos h1 {
        font-size: 3rem;
    }

    .quienes_somos p {
        font-size: 1.1rem;
    }

    .quienes_somos_text {
        max-width: 80%;
        padding: 0 0 0 0;
    }

    .zona_residencial_text {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
    }

    .zona_residencial_imgs {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .zona_residencial_imgs img {
        width: 100%;
        margin-bottom: 15px;
    }

    .zona_comercial {
        margin-bottom: 25px;
    }

    .zona_comercial_text {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50px;
    }

    .zona_comercial_imgs {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;

    }

    .zona_comercial_imgs img {
        width: 100%;
        margin-bottom: 15px;
    }

    .contacto_formulario {
        display: block;
        justify-content: center;
        gap: 20%;
        padding: 40px 0;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .datos_contacto {
        margin-top: 25px;
    }

    .info-box {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-color: white;
        padding: 40px;
        width: 80%;
        max-width: 500px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .features-grid {
        display: block;
        gap: 20px;
        margin: 40px 0;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
        align-items: center;
    }

    .features-images-cluster {

        margin-bottom: 50px;
        position: relative;
        width: 100%;
        min-height: 400px;
        flex-shrink: 0;
    }

    .features-text {
        flex: 1;
        margin-left: 0;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        color: #f6c17c;
    }
    .home1{
        padding-bottom: 25px;
    }
    .img-desktop {
    display: none;
  }
  .img-mobile {
      text-align: center;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}



/* Espaciado del contenido principal */