.servicos {
    padding: 90px 8%;
    text-align: center;
    background: #0f141b;
}

.servicos h2 {
    font-size: 34px;
    font-weight: 800;
}

.servicos-sub {
    margin-top: 10px;
    color: #aaa;
}

.servicos-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.servico-card {
    background: #11161d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1c242f;
    transition: 0.3s;
}

.servico-card i {
    font-size: 28px;
    color: #f5b400;
    margin-bottom: 15px;
}

.servico-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.servico-card p {
    font-size: 14px;
    color: #bbb;
}

.servico-card:hover {
    transform: translateY(-6px);
    border-color: #f5b400;
}