/* =========================
   CONTACTO - ESTILO MODERNO
========================= */

/* Títulos generales */
h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f4f3a;
    margin-bottom: 20px;
}

/* =========================
   GRID DE INFORMACIÓN
========================= */

.grid-propiedades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* =========================
   CARDS (CONTACTO)
========================= */

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    margin: 6px 0;
    color: #333;
}

/* =========================
   BOTÓN WHATSAPP PRO
========================= */

.btn-whatsapp {
    display: inline-block;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 800;
    color: white;
    text-decoration: none;
    border-radius: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 25px rgba(37,211,102,0.35);
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 40px rgba(37,211,102,0.45);
}

/* =========================
   ASESORES
========================= */

.asesores {
    text-align: center;
    padding: 40px 20px;
}

.card-asesor {
    display: inline-block;
    width: 200px;
    margin: 20px;
    padding: 15px;
    background: #1f1f1f;
    color: white;
    border-radius: 15px;
    transition: 0.3s;
}

.card-asesor:hover {
    transform: translateY(-6px);
}

.card-asesor img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.card-asesor h3 {
    margin-top: 12px;
    font-size: 16px;
}

/* =========================
   FOOTER
========================= */

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #D4AF37;
}
