* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
  }
  

  @media (max-width: 768px) {
    h1, .header-text { font-size: 1.5rem; }     
    h2, .section-subtitle { font-size: 1.25rem; }
  }
  .info-text {
    text-align: justify;
    hyphens: auto;
    max-width: 65ch; 
    margin-bottom: 1.5rem; 
    text-align: center;
  }
  
   .commitment-section {
    padding: 4rem 0; 
  }
  
  .section-title {
    margin-bottom: 1rem; 
  }
  
  .section-subtitle {
    margin-bottom: 1.5rem; 
  }
  

  


 
      .container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }
      
      /* Estilos del encabezado */
      header {
          padding: 20px 0;
          text-align: center;
      }
      
      .logo {
          max-width: 250px;
          margin-bottom: 20px;
      }
      
      .header-text {
          font-size: 28px;
          color: #333;
          margin: 15px 0;
      }
      
     /* Sección de estadísticas */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  grid-template-rows: repeat(2, 1fr); /* 2 filas */
  gap: 0;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  position: relative;
}

/* Caja de cada estadística */
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

/* Número y símbolo + */
.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-plus {
  color: #FFB800;
  font-size: 24px;
  margin-left: 5px;
}

.stat-label {
  text-transform: uppercase;
  font-size: 14px;
  color: #666;
}

/* Líneas divisorias */
.stat-box::after,
.stat-box::before {
  content: "";
  position: absolute;
  background-color: #FFB800;
}

.stat-box:nth-child(1)::after,
.stat-box:nth-child(2)::after {
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.stat-box:nth-child(1)::before,
.stat-box:nth-child(3)::before {
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
}

      
      /* Sección de información */
      .info-section {
          display: flex;
          flex-wrap: wrap;
          margin: 60px 0;
          gap: 30px;
          align-items: center;
      }
      
      .info-text {
          flex: 1;
          font-size: 16px;
          min-width: 300px;
      }
      
      .info-images {
          flex: 1;
          min-width: 300px;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 15px;
      }
      
      .info-image {
          width: 100%;
          height: 200px;
          object-fit: cover;
          border-radius: 8px;
      }
      
      /* Sección de compromiso */
      .commitment-section {
          background-color: #f9f9f9;
          padding: 60px 0;
          text-align: center;
      }
      
      .section-title {
          color: #FFB800;
          font-size: 24px;
          margin-bottom: 20px;
      }
      
      .section-subtitle {
          font-size: 32px;
          color: #333;
          margin-bottom: 30px;
      }
      
      .section-description {
          margin: 0 auto;
          max-width: 800px;
      }
      
      /* Sección de visión y misión */
      .vision-mission-section {
          display: flex;
          flex-wrap: wrap;
          gap: 30px;
          margin: 60px 0;
      }
      
      .property-showcase {
          flex: 1;
          min-width: 300px;
      }
      
      .property-image {
          width: 100%;
          height: 800px;
          border-radius: 8px;
      }
      
      .vision-mission-content {
          flex: 1;
          min-width: 300px;
          display: flex;
          flex-direction: column;
          gap: 40px;
      }
      
      .content-box {
          display: flex;
          flex-direction: column;
      }
      
      .content-title {
          color: #FFB800;
          font-size: 28px;
          margin-bottom: 15px;
      }
      
      .content-text {
          line-height: 1.8;
      }
      
      .content-image {
          width: 100%;
          max-height: 200px;
          object-fit: cover;
          border-radius: 8px;
          margin-top: 20px;
      }
      
      /* Sección de elegancia */
      .elegance-section {
          position: relative;
          height: 400px;
          display: flex;
          align-items: center;
          justify-content: flex-end;
          margin-bottom: 60px;
          overflow: hidden;
          margin-bottom: 0; /* Cambiar de 60px a 0 */

      }
      
      .elegance-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
      }
      
      .elegance-content {
          position: relative;
          z-index: 1;
          background-color: rgba(255, 255, 255, 0.7);
          padding: 30px;
          max-width: 500px;
          text-align: center;
          margin-right: 60px;
          border-radius: 8px;
      }
      
      .elegance-title {
          font-size: 28px;
          margin-bottom: 15px;
      }
      @media (max-width: 480px) {
          .stat-box {
              flex: 1 1 100%;
          }
          
          .elegance-section {
              height: 300px;
          }
          
          .stat-number {
              font-size: 28px;
          }
      }
      
      /* Botón de WhatsApp */
      .whatsapp-button {
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: #25D366;
          color: white;
          border-radius: 50px;
          padding: 10px 20px;
          display: flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;
          font-size: 14px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          z-index: 1000;
      }
      
      /* Media queries para responsive */
      @media (max-width: 768px) {
          .stat-box {
              flex: 1 1 40%;
              border-right: none;
              border-bottom: 1px solid #eee;
              padding-bottom: 20px;
              margin-bottom: 20px;
          }
          
          .info-section {
              flex-direction: column;
          }
          
          .info-images {
              grid-template-columns: 1fr;
          }
          
          .elegance-content {
              margin: 0 20px;
              max-width: 100%;
          }
          
          .header-text {
              font-size: 24px;
          }
          
          .section-subtitle {
              font-size: 26px;
          }
      }
      
      @media (max-width: 480px) {
          .stat-box {
              flex: 1 1 100%;
          }
          
          .elegance-section {
              height: 300px;
          }
          
          .stat-number {
              font-size: 28px;
          }
      }






/* imagen/palabra*/

  
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 60vh;
    background: black;
    z-index: -1;
}

.hero {
    position: relative;
    width: 85%;
    height: 60vh;
    background: url('/images/about.jpg') no-repeat center center/cover;
    margin-left: 15%;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .hero {
        width: 100%;
        margin-left: 0;
        height: 70vh;
    }
    .overlay {
        width: 50%;
    }
    .text {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .overlay {
        width: 60%;
    }
    .text {
        font-size: 1.8rem;
        left: 10%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    .overlay {
        width: 100%;
    }
    .text {
        font-size: 1.5rem;
        left: 5%;
    }
}