.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.content:hover {
    transform: translateY(-5px);
}

.content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}

.content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.content h6 {
    font-size: 1.2rem;
    color: #c45a1d;
    margin-bottom: 15px;
}

button.compra-1,
button.compra-2,
button.compra-3,
button.compra-4 {
    width: 100%;
    padding: 10px;
    background-color: #c45a1d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .galeria {
        padding: 10px;
        gap: 10px;
    }

    .content {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .content img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 10px;
    }

    .content h3 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}