body {
  font-family:  sans-serif;
  margin: 0;
  /* 3/4 del ancho de la pantalla 
  line-height: 1.6; */
  color: #333;
}


header {
  background: #CA1684;
  color: #fff;
  padding: 1em 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
}


.hero {
  text-align: center;
  background: #CA1684;
  padding: 50px 20px;
}

.hero button {
  padding: 10px 20px;
  background: #243A79;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
}

.hero p {
    font-family: "Brush Script MT", cursive;
    font-size: 25px;
    color: #fff;
}

.hero h2 {
    font-size: 30px;
    color: #fff;
}

.section {

  padding: 40px 20px;
}


.img-container {
  width: 95vw; /* 3/4 del ancho de la pantalla */
  height: auto; /* Ajusta la altura automáticamente */
  margin: 0 auto; /* Centra el contenedor */
  
}

.img-container img {
  width: 100%;
  
  height: auto;
  max-height: 95vw;
  display: block; /* Evita espacio adicional debajo de la imagen */
}
.propiedades{
    background: #ca1684;
}

.properties-grid {
    
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.property-card {
  border: 2px solid #243A79; 

  padding: 20px;
  text-align: center;
}

.property-card img {
  max-width: 100%;
}
.form-container {
    width: 66.66%; /* 2/3 del ancho del dispositivo */
    max-width: 400px;
    background: #ca1684;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Estilos de los campos */
form {
    display: flex;
    flex-direction: column;
}

.servicios-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.servicio {
  background-color: #fff;
  padding: 1.2rem;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.servicio-imagen {
  float: left;
  margin-right: 20px;
  width: 100px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.servicio-titulo {
  color: #fff;
  background-color: #CA1684;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.servicio-descripcion {
  color: #333;
  font-size: .9rem;
  line-height: 1.5;
}

.servicio-boton {
  display: inline-block;
  background-color: #243A79;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.servicio-boton:hover {
  background-color: #1A2B56;
}
#acerca {
    background-color: #CA1684;
    color: #fff;
}

#contacto {
    background-color: #CA1684;
    color: #fff;
}

footer {
  text-align: center;
  padding: 20px;
  background: #243A79;
  color: #fff;
}