/* components/direita/xsat-ai.css */

.ai-container {
    padding: 10px;
    animation: fadeIn 0.3s ease-out;
}

.ai-target-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ai-target-label {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.btn-protocolo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-protocolo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-protocolo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: white;
}

.btn-protocolo i {
    font-size: 20px;
}

.btn-protocolo span {
    font-size: 11px;
    color: white;
    font-weight: 600;
}

.btn-voltar-ai {
    background: transparent;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-voltar-ai:hover {
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* No teu xsat-ai.css, garante que o ícone respira */
.btn-protocolo i.fa-mailchimp {
    font-size: 24px; /* O macaco fica melhor um pouco maior */
}

/* Cor especial para o BookAI quando o canal 6 está ativo */
.xsat-num[data-num="6"].active {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
}

/* O texto que o BookAI gera como resposta */
.ai-target-card div, 
.ai-target-card p {
    font-size: var(--fs-right-results) !important; /* Vinculado ao Slider */
    line-height: 1.6;
}

/* O texto de resumo na lista de blocos da IA */
#ai-blocks-list .resumo-texto {
    font-size: var(--fs-right-results) !important;
    opacity: 0.8;
}

/* Os títulos internos dos resultados (opcional: um pouco menores que o texto) */
.ai-target-label {
    font-size: calc(var(--fs-right-results) * 0.75) !important; 
    font-weight: 900;
}