body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo img {
  height: 60px; /* ajusta según tamaño deseado */
  width: auto;
  margin-bottom: 0.5rem;
}

.logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #003366;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
}

.hero {
  background: url('inicio.jpg') center/cover no-repeat;
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
  background-color: #003366; /* fallback */
}

.cta {
  background: #00aaff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
}

section {
  padding: 2rem;
  text-align: center;
}

.cards, .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card, .property {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 200px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #003366;
  color: white;
  border: none;
  padding: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.whatsapp {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #25D366;
  text-decoration: none;
}

footer {
  background: #003366;
  color: white;
  padding: 1rem;
  text-align: center;
}