/* ============================================================
   Página: Sindicatos e Associações — CRC-ES
   Estilos para os cards de informação dentro do accordion
   ============================================================ */

/* Cabeçalho da Categoria */
.crc-category-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e3a5f;
    padding-left: 0.25rem;
    border-left: 4px solid var(--crc-primary, #1e3a5f);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Card de Informação */
.crc-info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.crc-info-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.crc-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.crc-info-label i {
    font-size: 0.85rem;
}

.crc-info-value {
    font-size: 0.95rem;
    color: #212529;
    line-height: 1.5;
    word-break: break-word;
}

/* Link de e-mail */
.crc-email-link {
    color: #1e3a5f;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.2s;
}

.crc-email-link:hover {
    color: #0056b3;
}

/* Accordion — subtítulo no botão */
.crc-comissao-btn small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsivo */
@media (max-width: 767px) {
    .crc-category-heading {
        font-size: 1.15rem;
    }
    .crc-info-card {
        padding: 0.75rem 1rem;
    }
}
