.services {
    background: linear-gradient(180deg, #fff4ec 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    grid-column: span 3;
    position: relative;
    padding: 26px 18px;
    text-align: center;
    border-radius: 18px;
    background: var(--branco);
    border: 1px solid rgba(255, 90, 0, 0.18);
    box-shadow: 0 12px 28px rgba(8, 42, 87, 0.07);
}

.service-card:nth-child(n + 5) {
    grid-column: span 4;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: var(--laranja);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--laranja-claro);
    color: var(--azul);
    font-size: 2rem;
    font-weight: 900;
}

.service-card h3 {
    color: var(--azul-marinho);
    font-size: 1rem;
}
