/* Fundo geral do formulário */
.form-contato-cartorio {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

/* Campos */
.form-contato-cartorio input,
.form-contato-cartorio textarea,
.form-contato-cartorio select {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    color: #000;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Labels */
.form-contato-cartorio label.wpforms-field-label {
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    display: block;
}

/* Botão */
.form-contato-cartorio .wpforms-submit {
    background-color: #004aad;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover */
.form-contato-cartorio .wpforms-submit:hover {
    background-color: #003580;
}
.ct-related-posts {
    display: none !important;
}
/* --- Estilo dos cards de notícias profissionais --- */
.entry-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #0f2233;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 22px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    max-height: 240px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #004aad; /* detalhe lateral azul */
}

.entry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.entry-card img {
    width: 250px; /* aumenta a largura do card */
    height: 350px; /* altura menor para encaixar melhor no card horizontal */
    border-radius: 12px;
    object-fit: cover; /* mantém proporção sem distorcer */
    flex-shrink: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.entry-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}
.entry-card .card-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Data da notícia */
.entry-card .entry-meta {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
    display: block;
}

/* Título */
.entry-card .entry-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.entry-card .entry-title a {
    text-decoration: none;
    color: inherit;
}

.entry-card .entry-title a:hover {
    color: #4da3ff;
}

/* Resumo */
.entry-card .entry-excerpt p {
    font-size: 14px;
    color: #cccccc;
    margin: 0 0 10px 0;
    flex-grow: 1;
}

/* Botão Ler mais */
.entry-card .ler-mais {
    align-self: flex-start;
    background: #004aad;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.entry-card .ler-mais:hover {
    background: #003580;
}
