body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.muebles-container {
    display: flex;
    flex-direction: column; /* Apila verticalmente */
    align-items: center; /* Centra horizontalmente */
    padding: 20px;
    gap: 40px; /* Más espacio entre muebles */
}

/* Tarjetas más grandes */
.mueble-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 80%; /* Ocupa el 80% del ancho disponible */
    max-width: 800px; /* Ancho máximo */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Contenedor 3D más grande */
.modelo-3d {
    width: 100%;
    height: 400px; /* Altura aumentada */
    margin-bottom: 20px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.mueble-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}