/* Estilos generales */
h4 {
    text-align: center;
    font-size: 28px;
    color: #000000 ;
    margin-bottom: 20px;
}

/* Contenedor de las tarjetas */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Estilo de cada tarjeta */
.card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: none;
    border-radius: 12px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.15);
}

/* Imagen del producto */
.card img {
    width: 70%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Título del producto */
.card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #2c3e50;
    font-weight: 600;
}

/* Precio */
.price {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.btn-whatsapp img {
    display: block;
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease; /* Agrega un efecto de hover */
}

.btn-whatsapp img:hover {
    transform: scale(1.1); /* Aumenta el tamaño un poco al pasar el mouse */
}

.card a {
    text-decoration: none;
    color: inherit;
}
