﻿<style>
    .catalogo {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        padding: 30px;
    }

    .mueble-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mueble-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }

    .mueble-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .mueble-body {
        padding: 20px;
        text-align: center;
    }

    .mueble-nombre {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .mueble-precio {
        font-size: 24px;
        font-weight: bold;
        color: #2c7be5;
        margin-bottom: 15px;
    }

    .mueble-caracteristicas {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }
</style>