#collage {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.section-title {
    font-family: 'Rubik', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

/* Buscador con color corporativo */
.buscador {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid #ff9800; /* Naranja Sol */
    margin-bottom: 40px;
    outline: none;
    transition: 0.3s;
}

.buscador:focus {
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.producto {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.producto:hover {
    transform: translateY(-10px);
}

/* Ajuste de imágenes para que no se corten las piezas */
.producto img {
    width: 100%;
    height: 200px;
    object-fit: contain; /* <--- Muestra la pieza entera */
    background: #fdfdfd;
    border-radius: 12px;
    margin-bottom: 15px;
}

.producto h3 {
    text-transform: capitalize;
    color: #2c3e50;
    margin-bottom: 10px;
}

.btn {
    background: #2c3e50; /* Azul oscuro */
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: auto; /* Empuja el botón siempre al fondo */
    transition: 0.3s;
}

.btn:hover {
    background: #ff9800; /* Naranja Sol */
}