.card {
    padding: 1rem 1.5rem;
    background-color: #f9f9f9; /* cor de fundo suave */
    border-left: 4px solid #007bff; /* destaque visual à esquerda */
    border-radius: 8px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card p {
    position: relative;
    padding-left: 1.5rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.card p::before {
    content: "✔";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

h5, h6, h3 {
    font-weight: bold;
}