.svc-hero {
    margin-top: 24px;
    margin-bottom: 16px;
    border: 1px solid #2c6f9d;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(132deg, #13334b 0%, #1b4b6c 50%, #246790 100%);
    box-shadow: 0 12px 28px rgba(10, 31, 45, 0.2);
}

.svc-hero-copy {
    padding: 28px 26px 22px;
    color: #edf7ff;
}

.svc-kicker {
    margin: 0 0 10px;
    color: #a0d3f0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.1px;
    font-size: .84em;
}

.svc-hero-copy h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 1.18;
    font-size: 1.88em;
}

.svc-hero-copy p {
    margin: 0;
    max-width: 920px;
    color: #daedf9;
    line-height: 1.62;
    font-size: 1.06em;
}

.svc-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(196, 228, 246, 0.2);
    background: rgba(5, 23, 37, 0.24);
}

.svc-hero-stats article {
    padding: 15px 16px 16px;
    border-right: 1px solid rgba(196, 228, 246, 0.2);
}

.svc-hero-stats article:last-child {
    border-right: 0;
}

.svc-hero-stats strong {
    display: block;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25em;
    margin-bottom: 3px;
}

.svc-hero-stats span {
    color: #cde6f6;
    font-size: .95em;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
    align-items: stretch;
}

.svc-card {
    position: relative;
    --svc-accent-start: #2f7eaf;
    --svc-accent-mid: #4da3d8;
    --svc-accent-end: #70bce8;
    --svc-tag-bg: #e7f3fb;
    --svc-tag-color: #1f6d9e;
    border: 1px solid #d8e1e8;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(7, 24, 39, 0.08);
    transition: box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svc-card::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--svc-accent-start) 0%, var(--svc-accent-mid) 60%, var(--svc-accent-end) 100%);
}

.svc-card--linux {
    --svc-accent-start: #2b6f9c;
    --svc-accent-mid: #3388be;
    --svc-accent-end: #6cb8e2;
    --svc-tag-bg: #e7f3fb;
    --svc-tag-color: #1f6d9e;
}

.svc-card--zentyal {
    --svc-accent-start: #2f7d5f;
    --svc-accent-mid: #43a37d;
    --svc-accent-end: #78d3af;
    --svc-tag-bg: #e8f8f0;
    --svc-tag-color: #2c825f;
}

.svc-card--proxmox {
    --svc-accent-start: #8f5f2f;
    --svc-accent-mid: #be7e36;
    --svc-accent-end: #e0ac63;
    --svc-tag-bg: #fbf0e3;
    --svc-tag-color: #9a6326;
}

.svc-card--backup {
    --svc-accent-start: #3f4f8f;
    --svc-accent-mid: #5d72be;
    --svc-accent-end: #8e9de0;
    --svc-tag-bg: #edf0fb;
    --svc-tag-color: #3e5096;
}

.svc-card--hosting {
    --svc-accent-start: #2c6b7b;
    --svc-accent-mid: #3e8ea3;
    --svc-accent-end: #70b9ce;
    --svc-tag-bg: #e8f5f9;
    --svc-tag-color: #2a768c;
}

.svc-card--gateway {
    --svc-accent-start: #5b3f8f;
    --svc-accent-mid: #7b57be;
    --svc-accent-end: #a07ee0;
    --svc-tag-bg: #f1ecfb;
    --svc-tag-color: #6542a3;
}

.svc-card--eset {
    --svc-accent-start: #003d80;
    --svc-accent-mid: #0062b8;
    --svc-accent-end: #009ae0;
    --svc-tag-bg: #e2f0fb;
    --svc-tag-color: #004a8f;
}

.svc-card--partner-full {
    grid-column: 1 / -1;
}

.svc-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #003d80;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: .66em;
    letter-spacing: .7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.svc-card:hover {
    box-shadow: 0 10px 24px rgba(7, 24, 39, 0.13);
}

.svc-card--featured {
    border-color: #c8dceb;
    box-shadow: 0 12px 26px rgba(12, 40, 60, 0.14);
}

.svc-card--featured .svc-meta::after {
    content: "Destaque";
    margin-left: auto;
    padding: 3px 8px;
    border-radius: 999px;
    background: #e6f4ff;
    color: #1d6b9c;
    font-family: 'Oswald', sans-serif;
    font-size: .66em;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.svc-image {
    width: 100%;
    display: block;
    background: #f1f6fa;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.svc-content {
    padding: 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.svc-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--svc-tag-bg);
    color: var(--svc-tag-color);
    font-family: 'Oswald', sans-serif;
    font-size: .72em;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.svc-level {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    font-size: .68em;
    letter-spacing: .65px;
    text-transform: uppercase;
    border: 1px solid transparent;
    white-space: nowrap;
}

.svc-level--essencial {
    background: #eef7e8;
    color: #4a7f2b;
    border-color: #d3eac0;
}

.svc-level--avancado {
    background: #e8f2fb;
    color: #2b6998;
    border-color: #c7def1;
}

.svc-level--enterprise {
    background: #f0eafb;
    color: #5f4297;
    border-color: #d9c9f1;
}

.svc-title {
    margin: 0 0 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2em;
    color: #12344d;
    letter-spacing: .4px;
    text-transform: uppercase;
    line-height: 1.25;
    min-height: 62px;
}

.svc-text {
    margin: 0 0 12px;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.5;
    color: #2d3e4a;
    min-height: 84px;
}

.svc-list {
    margin: auto 0 0;
    padding-left: 18px;
    color: #1e2d37;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.5;
}

.svc-list li {
    margin-bottom: 6px;
}

.svc-list li:last-child {
    margin-bottom: 0;
}

.svc-cta {
    margin: 28px 0 8px;
    padding: 22px;
    border-radius: 8px;
    background: #f4f9fd;
    border: 1px solid #d8e1e8;
    border-left: 6px solid #3388be;
    text-align: center;
}

.svc-cta h2 {
    margin: 0 0 8px;
    font-family: 'Oswald', sans-serif;
    color: #12344d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.svc-cta p {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1em;
    color: #2d3e4a;
}

.svc-cta a {
    display: inline-block;
    margin-top: 14px;
    background: #3388be;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.svc-cta a:hover {
    background: #1f6d9e;
}

@media screen and (max-width: 980px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-hero-copy {
        padding: 22px 16px 18px;
    }

    .svc-hero-copy h1 {
        font-size: 1.46em;
    }

    .svc-hero-stats {
        grid-template-columns: 1fr;
    }

    .svc-hero-stats article {
        border-right: 0;
        border-bottom: 1px solid rgba(196, 228, 246, 0.2);
    }

    .svc-hero-stats article:last-child {
        border-bottom: 0;
    }

    .svc-meta {
        flex-wrap: wrap;
    }

    .svc-image {
        aspect-ratio: auto;
    }

    .svc-title {
        min-height: auto;
    }

    .svc-text {
        min-height: auto;
    }
}
