.contenedor-anuncios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
    margin-top:30px;
}

.anuncio{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s ease;
    border:1px solid #eee;
}

.anuncio:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.anuncio-imagen{
    position:relative;
    overflow:hidden;
}

.anuncio-imagen img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.anuncio:hover .anuncio-imagen img{
    transform:scale(1.05);
}

.anuncio-contenido{
    padding:20px;
}

.anuncio-categoria{
    display:inline-block;
    background:#eef2ff;
    color:#4f46e5;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.anuncio-contenido h2{
    font-size:22px;
    margin:0 0 15px;
    color:#111827;
}

.anuncio-detalles{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.anuncio-precio{
    font-size:28px;
    font-weight:700;
    color:#16a34a;
}

.anuncio-personas{
    font-size:15px;
    color:#6b7280;
}

.anuncio-boton{
    display:block;
    width:100%;
    text-align:center;
    background:#111827;
    color:#fff;
    padding:14px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.anuncio-boton:hover{
    background:#2563eb;
    color:#fff;
}