.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.servicio {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.servicio:hover {
    transform: translateY(-5px);
}

.servicio img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.servicio h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #28a745;
}

.servicio p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.servicio .precio {
    font-weight: bold;
    color: #28a745;
    margin: 5px 0;
}

.servicio .comprar {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.servicio .comprar:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio {
        max-width: 100%;
        margin: 0 auto;
    }

    .servicio img {
        height: auto;
        max-height: 200px;
    }
}

