﻿/* =========================
   Servicios
   ========================= */

.services-section-header {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(7, 20, 38, 0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.10);
        border-color: rgba(228, 60, 19, 0.26);
    }

.service-card__top {
    margin-bottom: 18px;
}

.service-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(7, 20, 38, 0.08);
    color: rgba(7, 20, 38, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card__badge--accent {
    background: rgba(228, 60, 19, 0.12);
    color: var(--accent);
}

.service-card__title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--text);
}

.service-card__text {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.service-card__price {
    background: rgba(7, 20, 38, 0.04);
    border: 1px solid rgba(7, 20, 38, 0.08);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .service-card__price strong {
        font-size: 1.3rem;
        color: var(--text);
    }

    .service-card__price span {
        color: var(--text-soft);
        font-size: 0.95rem;
    }

.service-card__price--soft {
    background: rgba(228, 60, 19, 0.04);
    border-color: rgba(228, 60, 19, 0.10);
}

.service-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 12px;
}

    .service-card__list li {
        position: relative;
        padding-left: 18px;
        line-height: 1.6;
        color: var(--text);
    }

        .service-card__list li::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--accent);
            position: absolute;
            left: 0;
            top: 10px;
        }

.service-card__actions {
    margin-top: auto;
}

    .service-card__actions .btn {
        width: 100%;
    }

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
