    /* -------------------------------------------------
   Avaluos Styles
------------------------------------------------- */

/* Estilos globales para la sección de avalúos */
.avaluos-section {
  background-image: url('/img/fondoavaluo.jpg'); /* Imagen de fondo */
  background-size: cover; /* Ajusta el tamaño sin cortar la imagen */
  background-repeat: no-repeat; /* Evita repeticiones */
  background-position: center center; /* Centra la imagen */
  color: white;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centra el contenido */
  min-height: 80vh;
  border: 1px solid #3498db;
  border-radius: 10px;
  margin-top: 10px;
  max-width: 1800px; /* Limita el ancho */
  margin-left: auto;
  margin-right: auto;
}


.avaluos-container {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Título a la izquierda, contenido a la derecha */
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.avaluos-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.avaluos-title h1 {
  font-size: 48px;
  font-weight: bold;
  margin: 0;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.avaluos-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.avaluos-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.avaluos-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.avaluos-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.avaluos-btn:hover {
  background-color: white;
  color: black;
}
  
  /* Estilos para las tarjetas con los avalúos comerciales */
  .holistic-section .holistic-container {
    display: flex;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1500px;
    margin: 50px auto;
  }
  
  .holistic-left {
    background-color: #3498db;
    color: white;
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px 0 0 8px;
  }
  
  .holistic-left h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .holistic-left button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .holistic-left button:hover {
    background-color: white;
    color: #007bff;
  }
  
  .holistic-right {
    flex: 2;
    padding: 15px;
    color: #333;
    font-size: 14px;
  }
  
  .holistic-right p {
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .holistic-right ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .holistic-right ul li {
    margin-bottom: 8px;
  }
  
  /* Estilos para la lista de dos columnas */
  .two-columns {
    column-count: 2;
    column-gap: 20px;
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
  }
  
  .two-columns li {
    margin-bottom: 10px;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 50px;
  }
  
  .card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 450px; /* Ajuste de tamaño para que quepan 3 tarjetas */
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
  }
  
  /* Para la tercera tarjeta, permitimos una disposición uniforme */
  .card-container .card {
    flex: 1 1 calc(33.33% - 20px); /* Hace que cada tarjeta tenga el mismo ancho */
    min-width: 300px;
  }
  
  .card.reverse {
    flex-direction: row-reverse;
  }
  
  .card-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 200px;
  }
  
  .card-text {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .card-text h3 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  
  .card-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
  }
  
  /* Responsive para pantallas pequeñas */
  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      max-width: 100%;
    }
  
    .card-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card-image {
      width: 100%;
      height: 180px;
    }
  }
  
  .avaluos-container {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
}

.avaluos-text {
    max-width: 50%;
}

.avaluos-text h2 {
    font-size: 28px;
    color: #333;
}

.highlight {
    color: #d23b42;
    font-weight: bold;
}

.avaluos-text p {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 15px;
    font-weight: bold;
}

.whatsapp-button:hover {
    background-color: #1ebd55;
}

.avaluos-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .avaluos-container {
        flex-direction: column;
        text-align: center;
    }

    .avaluos-text {
        max-width: 100%;
    }

    .avaluos-image img {
        max-width: 250px;
        margin-top: 20px;
    }
}
  
