/* ============================================================
   ESTILOS PARA TABELAS DENTRO DOS ARTIGOS DO BLOG
   ============================================================ */

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    font-family: var(--body-font);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.content-table thead tr {
    background-color: var(--first-color);
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th,
.content-table td {
    padding: 12px 15px;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--first-color);
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: var(--first-color);
}

/* CTA Inline dentro do conteúdo */
.cta-inline {
    background-color: #f8f9fa;
    border-left: 4px solid var(--first-color);
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.cta-inline h3 {
    margin-top: 0;
    color: var(--title-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

@media screen and (max-width: 768px) {
    .content-table thead {
        display: none;
    }
    
    .content-table, .content-table tbody, .content-table tr, .content-table td {
        display: block;
        width: 100%;
    }
    
    .content-table tr {
        margin-bottom: 15px;
    }
    
    .content-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .content-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}
