.secao-servicos{
    padding: 40px 0;
    background-color: #121828; /* Mesmo fundo da página, ou um levemente diferente se preferir */
}

.secao-servicos .titulo-secao{
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.8em;
    font-weight: bold;
    background: linear-gradient(90deg, #642c45, #6c9ffc);
    --webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.titulo-secao-wrapper{
    text-align: left;
}

.grid-servicos{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Layout de grid responsivo */
    gap: 35px; /* Espaço entre os cards de serviço */
    width: 60%;
    margin-top: 10px;
    margin-right: auto;
}

.grid-servicos2{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Layout de grid responsivo */
    gap: 35px; /* Espaço entre os cards de serviço */
    width: 60%;
    margin-top: 5px;
    margin-left: auto;
}

.item-servico{
    background-color: #1A2035;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* display: flex;
    flex-direction: column; */
}

.item-servico:hover{
    transform: translateY(-10px);  /* Efeito de elevação no hover */
    box-sizing: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.icone-servico{
    font-size: 2.8em;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #642c45, #6c9ffc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    /* color: #6c9ffc; */
}

.titulo-item-servico{
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.descricao-item-servico{
    font-size: 0.9em;
    color: #c0c8e7;
    line-height: 1.7;
}

/* Ajuste de Responsividade dessa section */
@media (max-width: 768px) {
    .secao-servicos .titulo-secao{
        font-size: 2.2em;
        text-align: center;
    }

    .item-servico{
        padding: 30px 25px;
    }

    .titulo-item-servico{
        font-size: 1.4em;
    }
}