/* ====================================
   SECTION SERVICES / TARIFS
   ==================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #666;
}

.price {
    margin-top: 20px;
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
}
