/* Sección de productos */
.product-section {
    padding: 30px;
    margin: 20px auto;
    background-color: var(--color-contenedor); /* Variable no definida en :root */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
}

.titulo-contenedor {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primario);
}

.product-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.product-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; /* Agregué la transición aquí */
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card p {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.product-card:hover {
    transform: scale(1.05);
}