@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #2d3436;
    line-height: 1.6;
}

header {
    background-color: #1a2b4c;
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #f1c40f;
}

main {
    padding: 20px 5%;
}

.hero {
    background: linear-gradient(rgba(26, 43, 76, 0.8), rgba(26, 43, 76, 0.8)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.section h2 {
    color: #1a2b4c;
    border-bottom: 3px solid #f1c40f;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.button {
    display: inline-block;
    background-color: #1a2b4c;
    color: #a0c4ff !important; /* Azul clarito para máxima legibilidad */
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #a0c4ff;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #f1c40f !important;
    color: #1a2b4c !important; /* Cambia a oscuro sobre el amarillo */
    border-color: #f1c40f;
}

.asesor-section {
    background-color: #e9ecef;
    text-align: center;
}

.contact-section {
    text-align: center;
}

footer {
    background-color: #1a2b4c;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}
