/* Pagina serviços  */
/* 
.pagina-servicos {

    background: #f8f9fb;

}

.card-servico {

    border: none;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

    transition: 0.3s;

}

.card-servico:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.card-servico img {

    height: 180px;

    object-fit: center;

}

.card-servico h5 {

    color: #1d3f6e;

    font-weight: 600;

}

.card-servico p {

    font-size: 14px;

    color: #6c757d;

}

 */


/* PAGINA SERVIÇOS */

.pagina-servicos {
    background: #0f172a;
    /* fundo principal igual ao resto */
}

/* CARD */
.card-servico {
    border: none;
    border-radius: 12px;
    overflow: hidden;

    background: #1e293b;
    /* fundo do card dark */

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    position: relative;
}

.card-servico::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* IMAGEM */
.card-servico img {
    height: 180px;
    width: 100%;
    object-fit: cover;

    filter: brightness(0.85);
    /* leve escurecida pra combinar */
    transition: 0.3s;
}

.card-servico:hover img {
    filter: brightness(1);
    /* destaca no hover */
}

/* TITULO */
.card-servico h5 {
    color: #e2e8f0;
    font-weight: 600;
}

/* TEXTO */
p {
    font-size: 16px;
    color: #94a3b8;
}

.titulo-secao {
    color: #e2e8f0;
}