/* =============================================
   WIDGET DE SECRETOS [rc_secretos]
   ============================================= */

.rc-secretos-widget {
    border: 1px solid #e2e2e2;
    border-top: 4px solid #7c3aed;
    border-radius: 8px;
    margin-bottom: 24px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.rc-secretos-intro {
    color: #666;
    font-size: 0.9em;
    margin: 0 0 16px 0;
    font-style: italic;
}

.rc-secretos-lista {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.rc-secreto-item {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    overflow: hidden;
}

.rc-secreto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    cursor: pointer;
    background: #faf5ff;
    transition: background 0.15s;
    user-select: none;
    gap: 12px;
}

.rc-secreto-header:hover {
    background: #f3e8ff;
}

.rc-secreto-header.rc-secreto-abierto {
    background: #ede9fe;
    border-bottom: 1px solid #ddd6fe;
}

.rc-secreto-nombre {
    font-weight: 600;
    font-size: 0.9em;
    color: #1a1a2e;
    flex: 1;
}

.rc-secreto-toggle {
    font-size: 0.8em;
    color: #7c3aed;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.rc-secreto-contenido {
    padding: 12px 14px;
    background: #fff;
    border-top: 1px solid #ede9fe;
}

.rc-secreto-contenido p {
    margin: 0;
    font-size: 0.9em;
    color: #333;
    line-height: 1.6;
}

.rc-btn-revelar-todos {
    width: 100%;
    padding: 10px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.rc-btn-revelar-todos:hover {
    background: #6d28d9;
}
