﻿/* estilos.css */
body { font-family: Arial, sans-serif; margin:0; background:#f5f5f5; }
header { background:#00a650; color:white; padding:15px; text-align:center; font-size:20px; }
.grid-casas { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:20px; padding:20px; }
.card-casa { background:white; border-radius:10px; overflow:hidden; box-shadow:0 5px 15px rgba(0,0,0,0.1); }
.video-box { width:100%; height:150px; overflow:hidden; cursor:pointer; }
.video-box img { width:100%; height:100%; object-fit:cover; }
.info { padding:10px; }
.precio { color:#00a650; font-weight:bold; margin:5px 0; }
a.wp-link { display:inline-block; margin-top:5px; color:#007a3d; text-decoration:none; font-weight:bold; }
a.wp-link:hover { text-decoration:underline; }
a.card-link { text-decoration:none; color:inherit; }
.wp-link {
    color: #00a650; /* Tu verde */
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #00a650; /* Línea sutil abajo */
    padding-bottom: 2px;
}

.wp-link:hover {
    background-color: #f5f5f5; /* Tu gris claro al pasar el mouse */
}
