body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #ffffff; /* Color corporativo */
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    color: #27a7b2;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.banner {
    background: #004488;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-button {
    background: #ffaa00;
    color: #003366;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.destacados, .sobre-nosotros {
    padding: 2rem;
    text-align: center;
}

.propiedad {
    border: 1px solid #ddd;
    margin: 1rem;
    padding: 1rem;
    display: inline-block;
    width: 30%;
    vertical-align: top;
}

.propiedad img {
    max-width: 100%;
    height: auto;
}

footer {
    background: #f4f4f4;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
}