/* Estilos específicos para as páginas de detalhe de serviço */

.detalhe-servico {
    padding-top: 80px; /* Espaço para o cabeçalho fixo */
    padding-bottom: 80px;
}

.detalhe-servico__content {
    margin-top: 40px;
    line-height: 1.8;
    color: #444;
}

.detalhe-servico__content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007bff; /* Cor principal do site, inferida */
}

.detalhe-servico__content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.detalhe-servico__content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.detalhe-servico__content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.detalhe-servico__content ul li {
    margin-bottom: 10px;
}

.button--flex {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button--flex:hover {
    background-color: #0056b3;
}

.button--flex i {
    font-size: 1rem;
}
